FIX: deprioritize reaction notifications (#19049)

Fix for https://github.com/discourse/discourse/pull/19029

Reactions should be moved down similarly to likes
This commit is contained in:
Krzysztof Kotlarek 2022-11-16 15:37:51 +11:00 committed by GitHub
parent 2e655f8311
commit 87b297e76c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -239,7 +239,8 @@ class Notification < ActiveRecord::Base
def self.like_types
[
Notification.types[:liked],
Notification.types[:liked_consolidated]
Notification.types[:liked_consolidated],
Notification.types[:reaction]
]
end