Skip to content
This repository has been archived by the owner on Jun 17, 2022. It is now read-only.

Commit

Permalink
fix delete account endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
kspearrin committed Jul 20, 2018
1 parent 8149d78 commit cc8dd89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/api.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ export class ApiService implements ApiServiceAbstraction {
}

deleteAccount(request: PasswordVerificationRequest): Promise<any> {
return this.send('DELETE', '/accounts/delete', request, true, false);
return this.send('DELETE', '/accounts', request, true, false);
}

async getAccountRevisionDate(): Promise<number> {
Expand Down

0 comments on commit cc8dd89

Please sign in to comment.