authority icon indicating copy to clipboard operation
authority copied to clipboard

Next-gen Elixir authentication specification

Results 2 authority issues
Sort by recently updated
recently updated
newest added

Given that the most common side effect I've implemented on authentication is updating/deleting the token used, I propose that we change `Authority.Authentication.after_validate(user, purpose)` to `Authority.Authentication.after_validate(credential, user, purpose)` ```elixir defp do_authenticate(module,...

question
discussion

Things like - [ ] sign_in_count - Increased every time a sign in is made (by form, openid, oauth) - [ ] current_sign_in_at - A timestamp updated when the user...