Browse Source
Feature/add missing public keywords (#4102)
* Add public keyword
pull/3899/merge
Thomas Kaul
1 month ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
3 additions and
3 deletions
-
apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.component.ts
-
apps/client/src/app/core/auth.guard.ts
-
apps/client/src/app/pages/webauthn/webauthn-page.component.ts
|
@ -38,7 +38,7 @@ export class CreateOrUpdateAccessDialog implements OnDestroy { |
|
|
private notificationService: NotificationService |
|
|
private notificationService: NotificationService |
|
|
) {} |
|
|
) {} |
|
|
|
|
|
|
|
|
ngOnInit() { |
|
|
public ngOnInit() { |
|
|
this.accessForm = this.formBuilder.group({ |
|
|
this.accessForm = this.formBuilder.group({ |
|
|
alias: [this.data.access.alias], |
|
|
alias: [this.data.access.alias], |
|
|
permissions: [this.data.access.permissions[0], Validators.required], |
|
|
permissions: [this.data.access.permissions[0], Validators.required], |
|
|
|
@ -29,7 +29,7 @@ export class AuthGuard { |
|
|
`/${paths.resources}` |
|
|
`/${paths.resources}` |
|
|
]; |
|
|
]; |
|
|
|
|
|
|
|
|
constructor( |
|
|
public constructor( |
|
|
private dataService: DataService, |
|
|
private dataService: DataService, |
|
|
private router: Router, |
|
|
private router: Router, |
|
|
private settingsStorageService: SettingsStorageService, |
|
|
private settingsStorageService: SettingsStorageService, |
|
|
|
@ -22,7 +22,7 @@ export class GfWebauthnPageComponent implements OnDestroy, OnInit { |
|
|
|
|
|
|
|
|
private unsubscribeSubject = new Subject<void>(); |
|
|
private unsubscribeSubject = new Subject<void>(); |
|
|
|
|
|
|
|
|
constructor( |
|
|
public constructor( |
|
|
private changeDetectorRef: ChangeDetectorRef, |
|
|
private changeDetectorRef: ChangeDetectorRef, |
|
|
private router: Router, |
|
|
private router: Router, |
|
|
private tokenStorageService: TokenStorageService, |
|
|
private tokenStorageService: TokenStorageService, |
|
|