* Add public keyword
@ -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>();
private changeDetectorRef: ChangeDetectorRef,
private tokenStorageService: TokenStorageService,