diff --git a/support-portal-frontend/src/app/service/user.service.ts b/support-portal-frontend/src/app/service/user.service.ts index edd0ce1..2f0c1c6 100644 --- a/support-portal-frontend/src/app/service/user.service.ts +++ b/support-portal-frontend/src/app/service/user.service.ts @@ -44,6 +44,11 @@ export class UserService { }); } + public deleteUser(userId: string): Observable { + return this.httpClient + .delete(`${this.host}/user/${userId}`); + } + } export interface UserPage {