Здравствуйте как поменять путь в роутах ("config\route.rb") рельсов
namespace :institution do
get :index, path: '', to: "application#index" # Главная страничка
end
Дает результат
Helper HTTP Verb Path Controller#Action
institution_index_path GET /institution(.:format) institution/application#index
Нужно что бы путь к контроллеру был просто "application#index", а не " institution/application#index". Можно ли это делать внутри namespace?