2020-02-14 17:49:17 +00:00
|
|
|
class WebhookPolicy < ApplicationPolicy
|
|
|
|
def index?
|
2020-05-26 17:08:48 +00:00
|
|
|
@account_user.administrator?
|
2020-02-14 17:49:17 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def update?
|
2020-05-26 17:08:48 +00:00
|
|
|
@account_user.administrator?
|
2020-02-14 17:49:17 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy?
|
2020-05-26 17:08:48 +00:00
|
|
|
@account_user.administrator?
|
2020-02-14 17:49:17 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def create?
|
2020-05-26 17:08:48 +00:00
|
|
|
@account_user.administrator?
|
2020-02-14 17:49:17 +00:00
|
|
|
end
|
|
|
|
end
|