testing/config/routes.rb

12 lines
415 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 "/testings/order" => "testings#order"
get "/testings/hello" => "testings#hello"
post "/testings/updateorder" => "testings#updateorder"
resources :testings
end
end
end