remove automatic login in reset try

This commit is contained in:
eromano
2023-07-27 10:12:18 +02:00
parent 7962435966
commit 61a8cfd0c3

View File

@@ -150,11 +150,6 @@ export class OidcAuthenticationService extends BaseAuthenticationService {
reset(): void {
const config = this.authConfig.loadAppConfig();
this.auth.updateIDPConfiguration(config);
const oauth2: OauthConfigModel = Object.assign({}, this.appConfig.get<OauthConfigModel>(AppConfigValues.OAUTHCONFIG, null));
if (config.oidc && oauth2.silentLogin) {
this.auth.login();
}
}
isPublicUrl(): boolean {