This commit is contained in:
Mark Moser
2016-07-31 16:34:35 -05:00
parent abb3dee9f5
commit ace9b864d3
9 changed files with 178 additions and 3 deletions

View File

@ -11,7 +11,11 @@ Rails.application.routes.draw do
post "/summary", to: "candidate#update_summary", as: :post_summary
get "/summary", to: "candidate#summary", as: :summary
get "/review/logout", to: "review#logout", as: :review_logout
post "/review/login", to: "review#auth", as: :review_auth
get "/review/login", to: "review#login", as: :review_login
get "/review", to: "review#index", as: :review
get "/review/:test_hash", to: "review#view", as: :review_test
get "/recruiter", to: "recruiter#index", as: :recruiter
get "/recruiter/new-candidate", to: "recruiter#new", as: :new_candidate