We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Updated How To: Allow users to edit their password (markdown)
make a bit more clear that the resource_name argument has to be removed, too
Don't re-find `User` by `current_user.id`, that's an extra SQL query
Use permit instead of for for account_update
`bypass` option is deprecated; please use `bypass_sign_in` instead (https://github.com/plataformatec/devise/blob/c3b54dc0c2fde8da44dd3d8eaf174cf279639557/lib/devise/controllers/sign_in_out.rb#L32-L35)
[Devise] bypass option is deprecated and it will be removed in future version of Devise, Please use bypass_sign_in method instead. https://github.com/plataformatec/devise/blob/master/lib/devise/controllers/sign_in_out.rb
No need to specify the resource (it generate a link like '/users.4' that generate an error)
Fixed transposition of "create" and "manually"
The Devise routes do not take a user Id. They act on the current user resource.
about scopes
Fix indentation
Fix syntax highlighting for erb snippets
If not using scoped views (for example, Admin and User model with little difference between them), don't want to hard-code path
update_attributes => update
add indentation
Explain how to allow parameters when strong parameters is enabled.
Fix minor mistakes.
These methods are not on params! They most likely come from the strong_parameters gem.
Update custom controller example for Rails 4 with strong parameters
Markup fix (<% missing)