testing/config/routes.rb

11 lines
365 B
Ruby
Raw Normal View History

2019-08-23 05:25:51 +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
get "/testings/order" => "testings#order"
post "/testings/updateorder" => "testings#updateorder"
2019-08-23 05:33:31 +00:00
resources :testings
2019-08-23 05:25:51 +00:00
end
end
end