personal-patent/config/routes.rb

32 lines
938 B
Ruby

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
get 'patent_setting' => "patents#setting"
get 'patents/download_excel_format' => 'patents#excel_format'
post 'patents/import_from_excel' => 'patents#import_from_excel'
resources :patents do
collection do
get 'toggle_hide' => 'patents#toggle_hide'
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
end
end
end