2019-08-14 09:48:44 +00:00
|
|
|
class UserPolicy < ApplicationPolicy
|
|
|
|
def index?
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def create?
|
2020-05-26 17:08:48 +00:00
|
|
|
@account_user.administrator?
|
2019-08-14 09:48:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def update?
|
2020-05-26 17:08:48 +00:00
|
|
|
@account_user.administrator?
|
2019-08-14 09:48:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy?
|
2020-05-26 17:08:48 +00:00
|
|
|
@account_user.administrator?
|
2019-08-14 09:48:44 +00:00
|
|
|
end
|
|
|
|
end
|