blob: 885411a5b5aa6bd4f8877441a080ed571a88d018 (
plain) (
tree)
|
|
# frozen_string_literal: true
class AccountModerationNotePolicy < ApplicationPolicy
def create?
staff?
end
def destroy?
admin? || owner?
end
private
def owner?
record.account_id == current_account&.id
end
end
|