spec/dummyapp/config/routes.rb in ratchetio-0.5.5 vs spec/dummyapp/config/routes.rb in ratchetio-0.6.0
- old
+ new
@@ -2,10 +2,13 @@
authenticated :user do
root :to => 'home#index'
end
root :to => "home#index"
devise_for :users
- resources :users
+ resources :users do
+ member { post :start_session }
+ end
match "/cause_exception" => "home#cause_exception"
match "/report_exception" => "home#report_exception"
+ match "/current_user" => "home#current_user"
end