2022-02-14 21:27:53 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AccountWarningPolicy < ApplicationPolicy
|
|
|
|
def show?
|
2022-07-05 02:41:40 +02:00
|
|
|
target? || role.can?(:manage_appeals)
|
2022-02-14 21:27:53 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def appeal?
|
2025-01-09 10:08:39 -05:00
|
|
|
target? && record.appeal_eligible?
|
2022-02-14 21:27:53 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def target?
|
|
|
|
record.target_account_id == current_account&.id
|
|
|
|
end
|
|
|
|
end
|