1
0
mirror of https://github.com/mastodon/mastodon synced 2024-11-24 07:06:18 +09:00
mastodon/app/policies/account_warning_policy.rb

18 lines
310 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AccountWarningPolicy < ApplicationPolicy
def show?
target? || role.can?(:manage_appeals)
end
def appeal?
target? && record.created_at >= Appeal::MAX_STRIKE_AGE.ago
end
private
def target?
record.target_account_id == current_account&.id
end
end