2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2020-03-19 09:39:51 +00:00
|
|
|
class Controllers::KnowledgeBase::BaseControllerPolicy < Controllers::ApplicationControllerPolicy
|
|
|
|
default_permit!('knowledge_base.*')
|
|
|
|
permit! %i[create update destroy], to: 'knowledge_base.editor'
|
|
|
|
end
|