2022-02-15 07:27:53 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AccountWarningPolicy < ApplicationPolicy
|
|
|
|
def show?
|
2022-07-05 10:41:40 +10:00
|
|
|
target? || role.can?(:manage_appeals)
|
2022-02-15 07:27:53 +11:00
|
|
|
end
|
|
|
|
|
|
|
|
def appeal?
|
2022-02-17 08:29:48 +11:00
|
|
|
target? && record.created_at >= Appeal::MAX_STRIKE_AGE.ago
|
2022-02-15 07:27:53 +11:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def target?
|
|
|
|
record.target_account_id == current_account&.id
|
|
|
|
end
|
|
|
|
end
|