Я хочу переместить все бизнес-логи c внутри службы аутентификации и на стороне компонента, я просто хочу вызвать метод Поскольку ни одна из моих функций ничего не возвращает, это нормально или они зависнут?
КОМПОНЕНТ
credentials: Credentials = {
email: 'pacurarudaniel@gmail.com',
password: '123'
}
onLogIn(): void {
this.authService.logIn(this.credentials.email, this.credentials.password);
}
СЕРВИС
public logIn(email: string, password: string): void {
this.http.post<any>('http://localhost:3100/login', { email, password })
.subscribe(user => {
localStorage.setItem('TOKEN', user.token)
this.router.navigateByUrl('/home');
});
}