You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The specs are currently written with the assumption that a third-party service takes care of authentication and session management while the API itself only verifies a JWT. As the app is now meant to take care of authentication itself, it needs to allow for a login using username and password (and possibly also a second factor for MFA) and issue a JWT on successful login.
As JWTs cannot be invalidated, we don't need to have a logout. The app will log the user out by deleting its copy of the JWT.
The text was updated successfully, but these errors were encountered:
The specs are currently written with the assumption that a third-party service takes care of authentication and session management while the API itself only verifies a JWT. As the app is now meant to take care of authentication itself, it needs to allow for a login using username and password (and possibly also a second factor for MFA) and issue a JWT on successful login.
As JWTs cannot be invalidated, we don't need to have a logout. The app will log the user out by deleting its copy of the JWT.
The text was updated successfully, but these errors were encountered: