Rails.application.routes.draw do resources :surveys root 'surveys#home' get '/callback' => 'surveys#callback' get 'created', to: 'surveys#created', as: 'created' get '/to_respond', to: 'surveys#to_respond', as: 'to_respond' get '/my_answers', to: 'surveys#my_answers', as: 'my_answers' get 'surveys/:id/respond', to: 'surveys#respond', as: 'respond' post 'surveys/:id' , to: 'surveys#add', as: 'add' #post '/teachers/:id/add_subject/(.:format)' => 'teachers#add_subject', as: 'add_subject' end