6 lines
281 B
Ruby
6 lines
281 B
Ruby
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
class Controllers::KnowledgeBase::BaseControllerPolicy < Controllers::ApplicationControllerPolicy
|
|
default_permit!('knowledge_base.*')
|
|
permit! %i[create update destroy], to: 'knowledge_base.editor'
|
|
end
|