mirror of https://github.com/tootsuite/mastodon
Add `UserRole#enables_delivery?` method for notification check
parent
37f00fb018
commit
caf71ae4bc
|
@ -142,6 +142,10 @@ class UserRole < ApplicationRecord
|
|||
other_role.nil? || position > other_role.position
|
||||
end
|
||||
|
||||
def enables_delivery?(role)
|
||||
overrides?(role) && highlighted? && can?(*Flags::CATEGORIES[:moderation])
|
||||
end
|
||||
|
||||
def computed_permissions
|
||||
# If called on the everyone role, no further computation needed
|
||||
return permissions if everyone?
|
||||
|
|
|
@ -134,7 +134,7 @@ class NotifyService < BaseService
|
|||
end
|
||||
|
||||
def from_staff?
|
||||
@sender.local? && @sender.user.present? && @sender.user_role&.overrides?(@recipient.user_role) && @sender.user_role&.highlighted? && @sender.user_role&.can?(*UserRole::Flags::CATEGORIES[:moderation])
|
||||
@sender.local? && @sender.user.present? && @sender.user_role&.enables_delivery?(@recipient.user_role)
|
||||
end
|
||||
|
||||
def from_self?
|
||||
|
|
Loading…
Reference in New Issue