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 bailff blueprint provides auth status route that emits the application login configuration as an attribute of the user auth status. The application config app.config.get('LOGIN_DISABLED') is answering the question "Is the login manager disabled for this application?" An answer of True indicates that users aren't required to log in.
This is confusing when straight mapped as a user authentication status. Login disabled could mean that the user is no longer permitted to log in. It is intending to indicate that the user is not required to login.
Resolved when
API emits user auth status with login_not_required property instead of login_disabled.
The text was updated successfully, but these errors were encountered:
Issue or current state
The bailff blueprint provides auth status route that emits the application login configuration as an attribute of the user auth status. The application config
app.config.get('LOGIN_DISABLED')
is answering the question "Is the login manager disabled for this application?" An answer ofTrue
indicates that users aren't required to log in.This is confusing when straight mapped as a user authentication status. Login disabled could mean that the user is no longer permitted to log in. It is intending to indicate that the user is not required to login.
Resolved when
API emits user auth status with
login_not_required
property instead oflogin_disabled
.The text was updated successfully, but these errors were encountered: