Browse Source

Don't move account route for now

pull/122/head
baarkerlounger 4 years ago
parent
commit
e2640b58d9
  1. 6
      config/routes.rb

6
config/routes.rb

@ -12,13 +12,15 @@ Rails.application.routes.draw do
ActiveAdmin.routes(self) ActiveAdmin.routes(self)
root to: "test#index" root to: "test#index"
get "about", to: "about#index" get "about", to: "about#index"
get "/users/account", to: "users/account#index"
form_handler = FormHandler.instance form_handler = FormHandler.instance
form = form_handler.get_form("2021_2022") form = form_handler.get_form("2021_2022")
resources :users do resources :users do
get "account", to: "users/account#index" collection do
get "account/personal_details", to: "users/account#personal_details" get "account/personal_details", to: "users/account#personal_details"
end
end end
resources :organisations do resources :organisations do

Loading…
Cancel
Save