Update routes.rb

add post method for save_categories_order
This commit is contained in:
chiu 2019-09-18 21:55:56 +08:00
parent bad3e9f19c
commit ccc38b670a
1 changed files with 1 additions and 0 deletions

View File

@ -5,6 +5,7 @@ locales = Site.find_by(site_active: true).in_use_locales rescue I18n.available_l
scope "(:locale)", locale: Regexp.new(locales.join("|")) do
namespace :admin do
get 'archive_files/categories_order' => 'archive_files#categories_order'
post 'archive_files/save_categories_order' => 'archive_files#save_categories_order'
resources :archive_files
end
get "/xhr/archive/download" => "archives#download_file"