I am using Devise in a rails app for User Auth. I have already created both the registrations and sessions controller, but now I want a controller that simulates the def update from scaffolding. Is there a way to access the controller that Devise uses to update a user?
I am using Devise in a rails app for User Auth. I have already
Share
Yes, you can subclass the registrations_controller used by devise to edit users and do whatever you want with the update action, this is the subclassed controller with the default update action in it: