trabajo-afectivo/config/routes/knowledge_base.rb

74 lines
2 KiB
Ruby
Raw Normal View History

2019-06-04 03:40:48 +00:00
Zammad::Application.routes.draw do
#
# API
#
concern :has_publishing do
member do
post :has_publishing_update, action: :has_publishing_update
CanBePublished::StateMachine.aasm.events.each do |event|
post event.name, action: "has_publishing_#{event.name}"
end
end
end
scope Rails.configuration.api_path do
resources :knowledge_bases, only: %i[show update] do
collection do
post :init
post :search, controller: 'knowledge_base/search'
get :recent_answers, controller: 'knowledge_base/answers'
resources :manage, controller: 'knowledge_base/manage' do
collection do
get :init
end
member do
get :server_snippets
patch :activate, :deactivate, :update_menu_items
end
end
end
# add routes
%w[locales layouts].each do |route_name|
resources route_name, controller: "knowledge_base/#{route_name}", except: %i[new edit]
end
resources :categories, controller: 'knowledge_base/categories',
except: %i[new edit] do
member do
patch :reorder_categories, :reorder_answers
end
collection do
patch :reorder_root_categories
end
end
resources :answers, controller: 'knowledge_base/answers',
except: %i[new edit],
concerns: :has_publishing do
resources :attachments, controller: 'knowledge_base/answer/attachments', only: %i[create destroy]
end
end
end
#
# Public
#
scope :help do
get '', to: 'knowledge_base/public/categories#forward_root', as: :help_no_locale
get ':locale', to: 'knowledge_base/public/categories#index', as: :help_root
get ':locale/:category', to: 'knowledge_base/public/categories#show', as: :help_category
get ':locale/:category/:answer', to: 'knowledge_base/public/answers#show', as: :help_answer
end
end