We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Updated How To: Allow users to edit their account without providing a password (markdown)
Small tweak to not assume gender.
add file path
Provided more explicit instructions with addition of previously implied step
I think highlight the file name will be better
Overriding the Devise controller is not a good advice, just roll your own
Better mimic default Devise behavior by needing a password if password_confirmation is passed in
reconifrmable -> reconfirmable
Added detail on how to get the reconfirmable option to still work when using this approach.
Use devise_parameter_sanitizer in custom registrations#update example
typo fix
Updated example to be compatible with Rails 4
use 'for' method will return an array object which is not valid in update_attributes method. use sanitize method works very well for me
Text had method 'sanitize' being called on Devise::ParemeterSanitizer. Method call should be 'for'; not sanitize. Text amended.
Strong Params - changed to what worked for me in master branch.
clarifying the use of update_with_password and update_without_password
Change for Strong Parameters in Rails 4
fix bug in example code: https://github.com/plataformatec/devise/issues/1620