0
0
Fork 0

Add UserRole#bypass_block? method for notification check (#32974)

This commit is contained in:
Matt Jankowski 2024-11-26 04:45:47 -05:00 committed by GitHub
parent f0855fd41f
commit a27bafa596
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions

View file

@ -142,6 +142,10 @@ class UserRole < ApplicationRecord
other_role.nil? || position > other_role.position
end
def bypass_block?(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?