about summary refs log tree commit diff
path: root/app/policies/report_note_policy.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/policies/report_note_policy.rb')
-rw-r--r--app/policies/report_note_policy.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/policies/report_note_policy.rb b/app/policies/report_note_policy.rb
index 694bc096b..dc31416e8 100644
--- a/app/policies/report_note_policy.rb
+++ b/app/policies/report_note_policy.rb
@@ -2,11 +2,11 @@
 
 class ReportNotePolicy < ApplicationPolicy
   def create?
-    staff?
+    role.can?(:manage_reports)
   end
 
   def destroy?
-    admin? || owner?
+    owner? || (role.can?(:manage_reports) && role.overrides?(record.account.user_role))
   end
 
   private