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 will see that `users PATCH` (note the plural) will be handled 
by the devise_controller, and the path will be named users_registration.

What do you see when you rake routes in your application? You may also need to 
restrict your resources :users route to just a few actions with the `only: 
[:your, :actions, :here]` syntax. Also, what does your devise_for look like? I 
have found that the order of module inclusion can be important. 

Walter


> On Aug 8, 2017, at 5:47 AM, fugee ohu <fugee...@gmail.com> wrote:
> 
> How do I edit users when i have devise_for :users and resources :users I have 
> a users controller with it's own whitelist and then I can whitelist for 
> devise in application_controller.rb What's the status of the crud users 
> controller and it's whitelist? I've been trying to edit a user but the 
> changes don't take It says user was successfully updated but then when I 
> click edit again nothing's changed
> 
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Ruby on Rails: Talk" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to rubyonrails-talk+unsubscr...@googlegroups.com.
> To post to this group, send email to rubyonrails-talk@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/rubyonrails-talk/d8931cf8-d7f8-4523-aaa8-ee3fbf4d44b0%40googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rubyonrails-talk+unsubscr...@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rubyonrails-talk/DF079E0E-0E6E-44DF-AA97-292D1BC839AF%40wdstudio.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to