trabajo-afectivo/app/policies/controllers/text_modules_controller_policy.rb

7 lines
327 B
Ruby
Raw Normal View History

# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
class Controllers::TextModulesControllerPolicy < Controllers::ApplicationControllerPolicy
permit! %i[index show], to: ['ticket.agent', 'admin.text_module']
permit! %i[create update destroy import_example import_start], to: 'admin.text_module'
end