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?
|
|
|
|
target? || staff?
|
|
|
|
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
|