From e1f6549e891fab346b0f98448c7700aeab09fb99 Mon Sep 17 00:00:00 2001 From: "k.triantafyllou" Date: Thu, 18 Jan 2024 09:58:28 +0200 Subject: [PATCH] [anuglar-16-irish-monitor]: AdminDashboardGuard make services protected --- monitor-admin/utils/adminDashboard.guard.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/monitor-admin/utils/adminDashboard.guard.ts b/monitor-admin/utils/adminDashboard.guard.ts index 08d94461..9d645cba 100644 --- a/monitor-admin/utils/adminDashboard.guard.ts +++ b/monitor-admin/utils/adminDashboard.guard.ts @@ -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 {