[DURACOM-204][#2622] Makes forgot-password link removable

This commit is contained in:
Vincenzo Mecca
2023-11-10 16:49:06 +01:00
parent 91b4d3dcd1
commit 2429c3660b

View File

@@ -64,7 +64,7 @@ export class LogInPasswordComponent implements OnInit {
/** /**
* The authentication form. * The authentication form.
* @type {FormGroup} * @type {UntypedFormGroup}
*/ */
public form: UntypedFormGroup; public form: UntypedFormGroup;
@@ -125,7 +125,7 @@ export class LogInPasswordComponent implements OnInit {
return message; return message;
}) })
); );
this.canRegister$ = this.authorizationService.isAuthorized(FeatureID.EPersonRegistration).pipe(shareReplay(1)); this.canRegister$ = this.authorizationService.isAuthorized(FeatureID.EPersonRegistration).pipe(shareReplay(1));
this.canForgot$ = this.authorizationService.isAuthorized(FeatureID.EPersonForgotPassword).pipe(shareReplay(1)); this.canForgot$ = this.authorizationService.isAuthorized(FeatureID.EPersonForgotPassword).pipe(shareReplay(1));
this.canShowDivider$ = this.canShowDivider$ =