2020-03-29 06:46:31 +00:00
|
|
|
class AccountPolicy < ApplicationPolicy
|
|
|
|
def show?
|
2020-05-26 17:08:48 +00:00
|
|
|
@account_user.administrator? || @account_user.agent?
|
2020-03-29 06:46:31 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def update?
|
2020-05-26 17:08:48 +00:00
|
|
|
@account_user.administrator?
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_active_at?
|
|
|
|
true
|
2020-03-29 06:46:31 +00:00
|
|
|
end
|
2022-07-19 13:34:17 +00:00
|
|
|
|
|
|
|
def subscription?
|
|
|
|
@account_user.administrator?
|
|
|
|
end
|
|
|
|
|
|
|
|
def checkout?
|
|
|
|
@account_user.administrator?
|
|
|
|
end
|
2020-03-29 06:46:31 +00:00
|
|
|
end
|