Production release February 2024 [CONNECT] #34

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

View File

@ -339,6 +339,8 @@ export class LayoutService {
}
setRootClass(value: string = null): void {
this.rootClassSubject.next(value);
if(this.rootClassSubject.value != value) {
this.rootClassSubject.next(value);
}
}
}

View File

@ -78,7 +78,7 @@ export class UserRegistryService {
public cancelInvitation(type: string, id: string, email: string, role: "member" | "manager" = "manager"): Observable<any> {
return this.http.delete<any>(properties.registryUrl + 'invite/' +
type + '/' + id + '/' + role + '/' + encodeURIComponent(email),
Role.GROUP + type + '/' + id + '/' + role + '/' + encodeURIComponent(email),
CustomOptions.registryOptions());
}
}