From 0932e6f47971381cb1ae8dbf4ecdac68f99e56b1 Mon Sep 17 00:00:00 2001 From: chiu Date: Wed, 18 Sep 2019 20:07:54 +0800 Subject: [PATCH] Update routes.rb fix error --- config/routes.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/routes.rb b/config/routes.rb index 8dff2f6..8d4c601 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -4,8 +4,8 @@ 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' resources :archive_files - get '/archive_files/categories_order' => 'archive_files#categories_order' end get "/xhr/archive/download" => "archives#download_file" end