From b426edd4854adc6e65844d8c54b8998e792b5778 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Mon, 11 Feb 2019 09:30:29 +0100 Subject: Cleanup reset user password by admin And add some tests --- client/src/app/shared/users/user.service.ts | 5 ----- 1 file changed, 5 deletions(-) (limited to 'client/src/app/shared/users/user.service.ts') diff --git a/client/src/app/shared/users/user.service.ts b/client/src/app/shared/users/user.service.ts index d0abc7def..cc5c051f1 100644 --- a/client/src/app/shared/users/user.service.ts +++ b/client/src/app/shared/users/user.service.ts @@ -103,11 +103,6 @@ export class UserService { ) } - resetUserPassword (userId: number) { - return this.authHttp.post(UserService.BASE_USERS_URL + userId + '/reset-password', {}) - .pipe(catchError(err => this.restExtractor.handleError(err))) - } - verifyEmail (userId: number, verificationString: string) { const url = `${UserService.BASE_USERS_URL}/${userId}/verify-email` const body = { -- cgit v1.2.3