fix delete account endpoint

This commit is contained in:
Kyle Spearrin 2018-07-20 13:01:48 -04:00
parent 8149d7877d
commit cc8dd89b2b
1 changed files with 1 additions and 1 deletions

View File

@ -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> {