-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(frontend): align frontend sso code with refactors #9506
feat(frontend): align frontend sso code with refactors #9506
Conversation
if (!_ssoManager.isSsoEnabled()) { | ||
return false; | ||
} | ||
updateConfig(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My original impression was that this was doing a refresh of the SSO provider by fetching configs from the backend... Is that no longer required?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you mean the OIDC backend or GMS? There is separate logic to pull the configuration from GMS in SSOManager.getDynamicSettings which calls out to the AuthServiceController and the OIDC backend update happens in a separate flow controlled by AuthenticationController
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for taking this on!
Checklist