mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 07:21:13 +01:00
18 lines
239 B
Ruby
18 lines
239 B
Ruby
|
# 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
|