about summary refs log tree commit diff
path: root/app/policies/report_note_policy.rb
blob: 694bc096b5af07dbcc36e577f8306b23c03c3399 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

class ReportNotePolicy < ApplicationPolicy
  def create?
    staff?
  end

  def destroy?
    admin? || owner?
  end

  private

  def owner?
    record.account_id == current_account&.id
  end
end