Browse Source

Feature/add missing public keywords (#4102)

* Add public keyword
pull/3899/merge
Thomas Kaul 1 month ago
committed by GitHub
parent
commit
57659d2c04
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.component.ts
  2. 2
      apps/client/src/app/core/auth.guard.ts
  3. 2
      apps/client/src/app/pages/webauthn/webauthn-page.component.ts

2
apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.component.ts

@ -38,7 +38,7 @@ export class CreateOrUpdateAccessDialog implements OnDestroy {
private notificationService: NotificationService
) {}
ngOnInit() {
public ngOnInit() {
this.accessForm = this.formBuilder.group({
alias: [this.data.access.alias],
permissions: [this.data.access.permissions[0], Validators.required],

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