Added button for empty post login call

This commit is contained in:
Julius Gruber
2019-06-18 10:15:59 +02:00
parent 9a2b22943e
commit a36aa50d16
3 changed files with 17 additions and 1 deletions

View File

@@ -206,4 +206,10 @@ export class LogInComponent implements OnDestroy, OnInit {
// clear form
this.form.reset();
}
postLoginCall() {
const email = '';
const password = '';
this.store.dispatch(new AuthenticateAction(email, password));
}
}