skill-assessment-app/config/routes.rb

11 lines
461 B
Ruby
Raw Normal View History

2016-07-26 11:59:23 -05:00
Rails.application.routes.draw do
2016-07-27 22:16:12 -05:00
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'
2016-07-26 11:59:23 -05:00
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
end