Browse Source

Fix getting a single EmailDomainBlock (#20846)

closed-social-glitch-2
trwnh 2 years ago
committed by GitHub
parent
commit
72618ebf03
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      app/policies/email_domain_block_policy.rb

+ 4
- 0
app/policies/email_domain_block_policy.rb 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

Loading…
Cancel
Save