[anuglar-16-irish-monitor]: AdminDashboardGuard make services protected

This commit is contained in:
Konstantinos Triantafyllou 2024-01-18 09:58:28 +02:00
parent 6034bcfe77
commit e1f6549e89
1 changed files with 3 additions and 3 deletions

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 {