From 80766f29114e2c3777966db48709c3a5ebdac17c Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 7 Dec 2024 09:45:21 +0100 Subject: [PATCH] Add public keyword --- apps/client/src/app/core/auth.guard.ts | 2 +- apps/client/src/app/pages/webauthn/webauthn-page.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/client/src/app/core/auth.guard.ts b/apps/client/src/app/core/auth.guard.ts index 548d36473..7a75728ca 100644 --- a/apps/client/src/app/core/auth.guard.ts +++ b/apps/client/src/app/core/auth.guard.ts @@ -29,7 +29,7 @@ export class AuthGuard { `/${paths.resources}` ]; - constructor( + public constructor( private dataService: DataService, private router: Router, private settingsStorageService: SettingsStorageService, diff --git a/apps/client/src/app/pages/webauthn/webauthn-page.component.ts b/apps/client/src/app/pages/webauthn/webauthn-page.component.ts index 41860014a..77a053258 100644 --- a/apps/client/src/app/pages/webauthn/webauthn-page.component.ts +++ b/apps/client/src/app/pages/webauthn/webauthn-page.component.ts @@ -22,7 +22,7 @@ export class GfWebauthnPageComponent implements OnDestroy, OnInit { private unsubscribeSubject = new Subject(); - constructor( + public constructor( private changeDetectorRef: ChangeDetectorRef, private router: Router, private tokenStorageService: TokenStorageService,