Production release February 2024 [CONNECT] #34

Merged
konstantina.galouni merged 168 commits from develop into master 2024-02-15 11:04:20 +01:00
1 changed files with 2 additions and 0 deletions
Showing only changes of commit adb4c86d2f - Show all commits

View File

@ -94,6 +94,7 @@ export class UserManagementService {
}
public login(redirect: string = null) {
Session.clearReloadUrl();
if(redirect) {
this.redirectUrl = redirect;
} else if (this.fixRedirectURL) {
@ -106,6 +107,7 @@ export class UserManagementService {
}
public logout() {
Session.clearReloadUrl();
this.setRedirectUrl();
Session.removeUser();
let logoutURL: string | string[] = isArray(properties.loginServiceURL)?properties.loginServiceURL.map(url => url + UserManagementService.LOGOUT):(properties.loginServiceURL + UserManagementService.LOGOUT);