attachments_controller_policy.rb 286 B

123456
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. class Controllers::KnowledgeBase::Answer::AttachmentsControllerPolicy < Controllers::ApplicationControllerPolicy
  3. permit! :clone_to_form, to: 'knowledge_base.*'
  4. default_permit!('knowledge_base.editor')
  5. end