Re: [Rails] devise administrating users

2017-08-08 Thread fugee ohu
On Tuesday, August 8, 2017 at 8:26:37 AM UTC-4, Walter Lee Davis wrote: > > The order of inclusion in the routes file is important here. If you have: > > devise_for :users > > [followed by] > > resources :users > > ...then the rake routes command will show you that the `user PATCH` path > wi

Re: [Rails] devise administrating users

2017-08-08 Thread Walter Lee Davis
The order of inclusion in the routes file is important here. If you have: devise_for :users [followed by] resources :users ...then the rake routes command will show you that the `user PATCH` path will be handled by the users_controller. If you have those two in the opposite order, then you w