We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Updated Simple Password Authentication (markdown)
Better to be explicit about this maybe
Assumption that this is used for allowing users to sign themselves up, but many apps new users are only created by admins. Added comment to clarify this.
Formatting. More context on previous edit: tutorial steps didn't work because we don't use a `user_sessions` resource in the routes. Change is to use the `login_path` instead of `user_sessions_path` and add the corresponding post 'login' route.
Update Simple Password Authentication docs
Change user_sessions_path to users_path in new user session view
Add defining users routes, since now we use scaffold_controller instead of scaffold.
Remove unecessary routes and actions
see last edit
When you generate the scaffold for the user the form is like this: `<%= form_with(model: User.new, local: true) do |form| %>` so we need to use `form.` instead of `f.`
fixed: Avoid 'The name 'User' is either already used in your application' errors
Update session form to use `form_with` per @neko314's suggestion
Please see the issue #182
Fix for my former fix
Use equality operator instead of assignment
Fixed a critical security bug in case /sessions routes is misconfigured with all 'resources'
Just wrapped ruby for `UsersController`
Update https://github.com/NoamB/sorcery/issues/728 content.
Remove deprecated methods before_filter and skip_before_filter.
We should validate password only when password changed or record is not persisted yet...
should use uniform action/filter syntax
Version 8.3.x details are outdated, current version is 9.1.x
Controller needs to inherit from ApplicationController
Proper flashes in layout
Don't create migration on initial scaffolding