11 lines
461 B
Ruby
11 lines
461 B
Ruby
Rails.application.routes.draw do
|
|
get "/welcome", to: 'candidate#welcome', as: :welcome
|
|
get "/thankyou", to: 'candidate#thankyou', as: :thankyou
|
|
get "/saved", to: 'candidate#saved', as: :saved
|
|
get "/summary", to: 'candidate#summary', as: :summary
|
|
get "/question", to: 'candidate#question', as: :question
|
|
|
|
root to: 'candidate#welcome'
|
|
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
|
|
end
|