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 3 additions and 3 deletions
Showing only changes of commit e1f6549e89 - Show all commits

View File

@ -13,9 +13,9 @@ import {Observable, zip} from "rxjs";
})
export class AdminDashboardGuard {
constructor(private router: Router,
private stakeholderService: StakeholderService,
private userManagementService: UserManagementService) {
constructor(protected router: Router,
protected stakeholderService: StakeholderService,
protected userManagementService: UserManagementService) {
}
check(path: string, alias: string): Observable<boolean> | boolean {