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