-
Notifications
You must be signed in to change notification settings - Fork 5.5k
How To: Allow users to edit their account without providing a password
By default, Devise allows users to change their password using the :registerable
module. But sometimes, developers want to create other actions that allow the user to change their information without requiring a password. The best option in this case is to create your own controller, that belongs to your application, and provide an edit and update actions, as you would do for any other resource in your application.
Keep in mind though to be restrictive in the parameters you allow to be changed. In particular, you likely want to permit just user data fields and avoid e-mail, password and such information to be changed:
params[:user].permit(:first_name, :last_name, :address)
The other solution would be to simply override "update resource" method in your registrations controller like that
class RegistrationsController < Devise::RegistrationsController
protected
def update_resource(resource, params)
resource.update_without_password(params)
end
end
And don't forget to tell devise to use your controller in routes.rb:
devise_for :users, controllers: {registrations: 'registrations'}