personal-patent/config/routes.rb

37 lines
1.2 KiB
Ruby
Raw Normal View History

2014-06-04 07:30:44 +00:00
Rails.application.routes.draw do
locales = Site.find_by(site_active: true).in_use_locales rescue I18n.available_locales
scope "(:locale)", locale: Regexp.new(locales.join("|")) do
namespace :admin do
2014-07-04 03:48:33 +00:00
get 'patent_setting' => "patents#setting"
2015-12-14 12:28:29 +00:00
get 'patents/download_excel_format' => 'patents#excel_format'
post 'patents/import_from_excel' => 'patents#import_from_excel'
2014-07-04 03:48:33 +00:00
resources :patents do
collection do
get 'toggle_hide' => 'patents#toggle_hide'
2016-06-04 10:36:31 +00:00
get 'analysis'
get 'analysis_report'
get "download_excel"
2014-07-04 03:48:33 +00:00
end
end
resources :members do
collection do
scope '(:name-:uid)' do
resources :patents do
collection do
get 'frontend_setting' => 'patents#frontend_setting'
post 'update_frontend_setting' => 'patents#update_frontend_setting'
end
end
end
end
end
resources :patent_types
2014-06-04 07:30:44 +00:00
end
2016-04-06 10:52:57 +00:00
get "/xhr/personal_patent/get_fields_for_index" => "personal_patents#get_fields_for_index"
post "/xhr/personal_patent/save_index_fields" => "personal_patents#save_index_fields"
2014-06-04 07:30:44 +00:00
end
end