RED-8565: fixed reset password redirect.

This commit is contained in:
Nicoleta Panaghiu 2024-02-21 10:08:02 +02:00
parent 7b29cc5f31
commit a2d30f0a65

View File

@ -76,6 +76,10 @@ export abstract class IqserUserService<
this._keycloakStatusService.createLoginUrlAndExecute();
}
async createResetPasswordAction() {
await this._keycloakService.login({ action: 'UPDATE_PASSWORD' });
}
loadAll() {
return this.getAll().pipe(
mapEach(user => new this._entityClass(user, user.roles, user.userId)),