Остальная часть приложения работает, когда я отправляю запрос на получение электронного письма для сброса пароля, ничего не происходит, и в приложении говорится, что пользователь не зарегистрирован.
import { Injectable } from "@angular/core";
import { Observable } from "rxjs/index";
import { ApiClientService } from "./my-api";
import { AuthenticationService } from "./authentication.service";
import {
GeneralResponse,
RecoverPasswordRequest
} from "./mykujtesa-api/models";
@Injectable({
providedIn: "root"
})
export class PasswordService {
constructor(
private apiClientService: ApiClientService,
private authenticationService: AuthenticationService
) {}
public postRecoverPassword(
request: RecoverPasswordRequest
): Observable<GeneralResponse> {
return this.apiClientService.postRecoverPassword(
this.authenticationService.getAuthenticationToken(),
request
);
}
}
Нет ошибок в консоли.