Feature/add missing public keywords (#4102)

* Add public keyword
pull/3899/merge
Thomas Kaul 1 week ago committed by GitHub
parent 0bd1a94a7b
commit 57659d2c04
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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],

@ -29,7 +29,7 @@ export class AuthGuard {
`/${paths.resources}`
];
constructor(
public constructor(
private dataService: DataService,
private router: Router,
private settingsStorageService: SettingsStorageService,

@ -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