2022-01-10 07:11:59 +00:00
|
|
|
class AutomationRulePolicy < ApplicationPolicy
|
|
|
|
def index?
|
|
|
|
@account_user.administrator?
|
|
|
|
end
|
|
|
|
|
|
|
|
def create?
|
|
|
|
@account_user.administrator?
|
|
|
|
end
|
2022-01-20 23:30:21 +00:00
|
|
|
|
2022-04-24 06:32:40 +00:00
|
|
|
def attach_file?
|
|
|
|
@account_user.administrator?
|
|
|
|
end
|
|
|
|
|
2022-01-20 23:30:21 +00:00
|
|
|
def show?
|
|
|
|
@account_user.administrator?
|
|
|
|
end
|
|
|
|
|
|
|
|
def update?
|
|
|
|
@account_user.administrator?
|
|
|
|
end
|
|
|
|
|
|
|
|
def clone?
|
|
|
|
@account_user.administrator?
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy?
|
|
|
|
@account_user.administrator?
|
|
|
|
end
|
2022-01-10 07:11:59 +00:00
|
|
|
end
|