tickets/config/routes.rb

20 lines
752 B
Ruby

Rails.application.routes.draw do
locales = Site.first.in_use_locales rescue I18n.available_locales
scope "(:locale)", locale: Regexp.new(locales.join("|")) do
post "/xhr/ticket/create", to: 'admin/tickets_api#create'
post "/xhr/ticket/close", to: 'admin/tickets_api#close'
post "/xhr/ticket/reopen", to: 'admin/tickets_api#reopen'
get "/xhr/tickets/:ticket_id", to: 'admin/tickets_api#getticket'
get "/xhr/tickets", to: 'admin/tickets_api#gettickets'
get "/xhr/ticket/types", to: 'admin/tickets_api#tickettypes'
delete "/xhr/ticket/:ticket_id", to: 'admin/tickets_api#destroy'
namespace :admin do
get "tickets/category/:category_id" => 'tickets#tickets_by_category'
resources :tickets
end
end
end