Здравствуйте. Как в рельсах правильно сделать переадрессацию в зависимости от выбрраной роли.
Сейчас реализовано так
в application_controller.rb
def index
redirect_root
end
def redirect_root
if current_user_type == 'Admin'
redirect_to admin_index_path
else
redirect_to institution_index_path
end
end
config/route.rb root 'application#index'
Может это все можно настроить все через только роутинг?