|
@ -47,7 +47,7 @@ import { CreateOrUpdateAccessDialogParams } from './interfaces/interfaces'; |
|
|
styleUrls: ['./create-or-update-access-dialog.scss'], |
|
|
styleUrls: ['./create-or-update-access-dialog.scss'], |
|
|
templateUrl: 'create-or-update-access-dialog.html' |
|
|
templateUrl: 'create-or-update-access-dialog.html' |
|
|
}) |
|
|
}) |
|
|
export class GfCreateOrUpdateAccessDialog implements OnDestroy { |
|
|
export class GfCreateOrUpdateAccessDialogComponent implements OnDestroy { |
|
|
public accessForm: FormGroup; |
|
|
public accessForm: FormGroup; |
|
|
|
|
|
|
|
|
private unsubscribeSubject = new Subject<void>(); |
|
|
private unsubscribeSubject = new Subject<void>(); |
|
@ -55,7 +55,7 @@ export class GfCreateOrUpdateAccessDialog implements OnDestroy { |
|
|
public constructor( |
|
|
public constructor( |
|
|
private changeDetectorRef: ChangeDetectorRef, |
|
|
private changeDetectorRef: ChangeDetectorRef, |
|
|
@Inject(MAT_DIALOG_DATA) private data: CreateOrUpdateAccessDialogParams, |
|
|
@Inject(MAT_DIALOG_DATA) private data: CreateOrUpdateAccessDialogParams, |
|
|
public dialogRef: MatDialogRef<GfCreateOrUpdateAccessDialog>, |
|
|
public dialogRef: MatDialogRef<GfCreateOrUpdateAccessDialogComponent>, |
|
|
private dataService: DataService, |
|
|
private dataService: DataService, |
|
|
private formBuilder: FormBuilder, |
|
|
private formBuilder: FormBuilder, |
|
|
private notificationService: NotificationService |
|
|
private notificationService: NotificationService |
|
|