keep plan selection during keycloak hop
This commit is contained in:
@@ -47,6 +47,12 @@ export class UserService {
|
||||
getNumberOfBroker(criteria?: UserListingCriteria): Observable<number> {
|
||||
return this.http.post<number>(`${this.apiBaseUrl}/bizmatch/user/findTotal`, criteria);
|
||||
}
|
||||
getKeycloakUser(id: string): Promise<KeycloakUser> {
|
||||
return lastValueFrom(this.http.get<KeycloakUser>(`${this.apiBaseUrl}/bizmatch/auth/users/${id}`));
|
||||
}
|
||||
async updateKeycloakUser(keycloakUser: KeycloakUser): Promise<void> {
|
||||
await lastValueFrom(this.http.put<void>(`${this.apiBaseUrl}/bizmatch/auth/users/${keycloakUser.id}`, keycloakUser));
|
||||
}
|
||||
// -------------------------------
|
||||
// ADMIN SERVICES
|
||||
// -------------------------------
|
||||
|
||||
Reference in New Issue
Block a user