This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2022-02-14 12:27:53 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AccountWarningPolicy < ApplicationPolicy
|
|
|
|
def show?
|
2022-07-04 17:41:40 -07:00
|
|
|
target? || role.can?(:manage_appeals)
|
2022-02-14 12:27:53 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def appeal?
|
2022-02-16 13:29:48 -08:00
|
|
|
target? && record.created_at >= Appeal::MAX_STRIKE_AGE.ago
|
2022-02-14 12:27:53 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def target?
|
|
|
|
record.target_account_id == current_account&.id
|
|
|
|
end
|
|
|
|
end
|