Fix getting a single EmailDomainBlock (#20846)

lolsob-rspec
trwnh 2022-11-17 03:55:50 -06:00 committed by GitHub
parent c7accdb6ac
commit 0f402ff0eb
1 changed files with 4 additions and 0 deletions

View File

@ -5,6 +5,10 @@ class EmailDomainBlockPolicy < ApplicationPolicy
role.can?(:manage_blocks)
end
def show?
role.can?(:manage_blocks)
end
def create?
role.can?(:manage_blocks)
end