links/config/routes.rb

14 lines
330 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 'web_resources/index_table' => 'web_resources#index_table'
resources :web_resources
end
end
end