18 lines
259 B
Ruby
18 lines
259 B
Ruby
|
|
class WebhookPolicy < ApplicationPolicy
|
||
|
|
def index?
|
||
|
|
@account_user.administrator?
|
||
|
|
end
|
||
|
|
|
||
|
|
def update?
|
||
|
|
@account_user.administrator?
|
||
|
|
end
|
||
|
|
|
||
|
|
def destroy?
|
||
|
|
@account_user.administrator?
|
||
|
|
end
|
||
|
|
|
||
|
|
def create?
|
||
|
|
@account_user.administrator?
|
||
|
|
end
|
||
|
|
end
|