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" resources :testings end end end