domain_block_policy.rb 351 B

1234567891011121314151617181920212223
  1. # frozen_string_literal: true
  2. class DomainBlockPolicy < ApplicationPolicy
  3. def index?
  4. role.can?(:manage_federation)
  5. end
  6. def show?
  7. role.can?(:manage_federation)
  8. end
  9. def create?
  10. role.can?(:manage_federation)
  11. end
  12. def update?
  13. role.can?(:manage_federation)
  14. end
  15. def destroy?
  16. role.can?(:manage_federation)
  17. end
  18. end