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