roughed in quiz GET views

This commit is contained in:
Mark Moser
2016-07-27 22:16:12 -05:00
parent 0d5ab42158
commit 5207b6b8fd
17 changed files with 288 additions and 7 deletions

View File

@ -1,3 +1,10 @@
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