logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

report_note_policy.rb (228B)


  1. # frozen_string_literal: true
  2. class ReportNotePolicy < ApplicationPolicy
  3. def create?
  4. staff?
  5. end
  6. def destroy?
  7. admin? || owner?
  8. end
  9. private
  10. def owner?
  11. record.account_id == current_account&.id
  12. end
  13. end