added save routing

This commit is contained in:
Mark Moser
2016-07-28 09:37:46 -05:00
parent 0950b7eb2a
commit 911c42bcd6
5 changed files with 11 additions and 5 deletions

View File

@ -3,11 +3,10 @@ Rails.application.routes.draw do
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
post "/question", to: "candidate#update_question", as: :post_question
get "/question", to: "candidate#question", as: :question
post "/validate", to: "candidate#validate", as: :validate_candidate
root to: "candidate#welcome"
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
end