Move out new-user and forgot-password items menu from LogInPasswordComponent

This commit is contained in:
Giuseppe Digilio
2019-10-24 22:44:36 +02:00
parent ab117105b3
commit 61eccb2973
5 changed files with 148 additions and 25 deletions

View File

@@ -17,7 +17,7 @@ export class LogInComponent implements OnInit, OnDestroy {
* The authentication methods data
* @type {AuthMethodModel[]}
*/
@Input() authMethodData: Observable<AuthMethodModel[]>;
@Input() authMethodModels: Observable<AuthMethodModel[]>;
@Input() isStandalonePage: boolean;
@@ -47,7 +47,7 @@ export class LogInComponent implements OnInit, OnDestroy {
// this.store.dispatch(new SetIsStandalonePageInAuthMethodsAction(this.isStandalonePage));
this.authMethodData = this.store.pipe(
this.authMethodModels = this.store.pipe(
select(getAuthenticationMethods),
);