trabajo-afectivo/app/policies/controllers/knowledge_base/base_controller_policy.rb

5 lines
205 B
Ruby
Raw Normal View History

class Controllers::KnowledgeBase::BaseControllerPolicy < Controllers::ApplicationControllerPolicy
default_permit!('knowledge_base.*')
permit! %i[create update destroy], to: 'knowledge_base.editor'
end