2017-11-11 14:23:33 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AccountModerationNotePolicy < ApplicationPolicy
|
|
|
|
def create?
|
2022-07-04 20:41:40 -04:00
|
|
|
role.can?(:manage_reports)
|
2017-11-11 14:23:33 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy?
|
2022-07-04 20:41:40 -04:00
|
|
|
owner? || (role.can?(:manage_reports) && role.overrides?(record.account.user_role))
|
2017-11-11 14:23:33 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def owner?
|
|
|
|
record.account_id == current_account&.id
|
|
|
|
end
|
|
|
|
end
|