Implement Instance Moderation Notes (#31529)

This commit is contained in:
Emelia Smith
2025-06-25 10:15:44 +02:00
committed by GitHub
parent 0f9f27972d
commit 72f2f35bfb
20 changed files with 295 additions and 15 deletions

View File

@@ -0,0 +1,17 @@
# frozen_string_literal: true
class InstanceModerationNotePolicy < ApplicationPolicy
def create?
role.can?(:manage_federation)
end
def destroy?
owner? || (role.can?(:manage_federation) && role.overrides?(record.account.user_role))
end
private
def owner?
record.account_id == current_account&.id
end
end