Use server error message on login
This commit is contained in:
parent
eacf925ea6
commit
80f8e364e1
|
@ -55,15 +55,9 @@ export class LoginComponent extends FormReactive implements OnInit {
|
||||||
const { username, password } = this.form.value
|
const { username, password } = this.form.value
|
||||||
|
|
||||||
this.authService.login(username, password).subscribe(
|
this.authService.login(username, password).subscribe(
|
||||||
result => this.router.navigate(['/videos/list']),
|
() => this.router.navigate(['/videos/list']),
|
||||||
|
|
||||||
err => {
|
err => this.error = err.message
|
||||||
if (err.message === 'invalid_grant') {
|
|
||||||
this.error = 'Credentials are invalid.'
|
|
||||||
} else {
|
|
||||||
this.error = `${err.body.error_description}`
|
|
||||||
}
|
|
||||||
}
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue