2017-11-12 06:23:33 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class EmailDomainBlockPolicy < ApplicationPolicy
|
|
|
|
def index?
|
2022-07-05 10:41:40 +10:00
|
|
|
role.can?(:manage_blocks)
|
2017-11-12 06:23:33 +11:00
|
|
|
end
|
|
|
|
|
|
|
|
def create?
|
2022-07-05 10:41:40 +10:00
|
|
|
role.can?(:manage_blocks)
|
2017-11-12 06:23:33 +11:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy?
|
2022-07-05 10:41:40 +10:00
|
|
|
role.can?(:manage_blocks)
|
2017-11-12 06:23:33 +11:00
|
|
|
end
|
|
|
|
end
|