config/routes.rb in rapidfire-2.1.0 vs config/routes.rb in rapidfire-3.0.0
- old
+ new
@@ -1,10 +1,10 @@
Rapidfire::Engine.routes.draw do
- resources :question_groups do
+ resources :surveys do
get 'results', on: :member
resources :questions
- resources :answer_groups, only: [:new, :create]
+ resources :attempts, only: [:new, :create]
end
- root :to => "question_groups#index"
+ root :to => "surveys#index"
end