We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Updated Routes Constraints (markdown)
Note about performance
Fixed a redundant conditional branch.
`register_failed_login!` and `UserMailer.unlock_token_email` are duplicated because they automatically executed after failed login
Now ActionController::API automatically include Sorcery::Controller hhttps://github.com/sorcery/sorcery/blob/0f937d95fa780710d3d963fcb84cc441c57448c8/lib/sorcery/engine.rb#L16-L16
Updated Brute force protection (markdown)
Updated Simple Password Authentication (markdown)
Add syntax coloration
Updated Testing Rails (markdown)
Make create method less bloated
Remove user's email in from line. Add unlock_accounts_url to mailer.
Add comments to updated `create` method
UserMailer.activation_needed_email(user.id).deliver_later => UserMailer.send_unlock_token_email(user.id).deliver_later
Isn't it in rails_helper.rb where you include modules in order to keep the spec_helper.rb light like the comment within the file say. (https://thoughtbot.com/blog/document-explicit-dependencies-through-tests). And maybe we could name the file the module code lives in to authentication.rb?
Updated Integration Testing with Rspec, Capybara and Fabricator (markdown)
Destroyed DelayedJob Integration (markdown)
söldfjasöflj
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.
Updated Magic Login Basic Setup (markdown)
Created Magic Login Basic Setup (markdown)
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
fix bugs
fix bug
fix formatting