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:
parent
2e655f8311
commit
87b297e76c
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue