diff --git a/app/policies/captain/editor_policy.rb b/app/policies/captain/editor_policy.rb index 44e8b3c5f..0ac621794 100644 --- a/app/policies/captain/editor_policy.rb +++ b/app/policies/captain/editor_policy.rb @@ -1,5 +1,17 @@ class Captain::EditorPolicy < ApplicationPolicy - def process_event? + def rewrite? + true + end + + def summarize? + true + end + + def reply_suggestion? + true + end + + def label_suggestion? true end end