We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Updated Using Resource Owner Password Credentials flow (markdown)
Update to modern hash key syntax and explain `store: false`
fixes incompatibility with lockable module of devise
Actually, shouldn't replace as I did in my previous edit. Should add "active_for_authentication" just to make sure confirmation is not pending in a 'confirmable' scenario
Use active_for_authentication? instead of valid_for_authentication? to correctly respond in case of :confirmable usage for example (i.e. use the overwritten version of the function when useful).
Previous syntax doesn't work because the array is frozen once the authorized grants are calculated from the grant_flows variable.
Tell Warden NOT to store the authenticated user in session.
Use `params[:username]` as in the rest of the examples
Fix example param key, probably due to copy/paste?
resource_owner_from_credentials must logout warden
Added the password grant type instructions (which I had to figure out the hard way).
Client ID and Client Secret are not required for this grant_type
document how authentication through warden works
updated for newer devise
Created Using Resource Owner Password Credentials flow (markdown)