Browse Source

Add public keyword

pull/4102/head
Thomas Kaul 9 months ago
parent
commit
80766f2911
  1. 2
      apps/client/src/app/core/auth.guard.ts
  2. 2
      apps/client/src/app/pages/webauthn/webauthn-page.component.ts

2
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,

2
apps/client/src/app/pages/webauthn/webauthn-page.component.ts

@ -22,7 +22,7 @@ export class GfWebauthnPageComponent implements OnDestroy, OnInit {
private unsubscribeSubject = new Subject<void>();
constructor(
public constructor(
private changeDetectorRef: ChangeDetectorRef,
private router: Router,
private tokenStorageService: TokenStorageService,

Loading…
Cancel
Save