Skip to content
Snippets Groups Projects
Verified Commit 4f7f6ebe authored by Damien's avatar Damien
Browse files

FEAT #15181 TIME 0:50 Redirect when sso connection problem

parent 93d74e2e
No related branches found
No related tags found
No related merge requests found
......@@ -100,6 +100,8 @@ export class LoginComponent implements OnInit {
this.notify.error(this.translate.instant('lang.wrongLoginPassword'));
} else if (err.error.errors === 'Account Locked') {
this.notify.error(this.translate.instant('lang.accountLocked') + ' ' + this.timeLimit.transform(err.error.date));
} else if (this.authService.authMode === 'sso' && err.error.errors === 'Authentication Failed : login not present in header' && !this.functionsService.empty(this.authService.authUri)) {
window.location.href = this.authService.authUri;
} else {
this.notify.handleSoftErrors(err);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment