Changed /api/changeUser endpoint to /api/updateUser

This commit is contained in:
Tzahi12345
2020-05-05 19:31:47 -04:00
parent a1c9c97616
commit f094d18e03
2 changed files with 2 additions and 2 deletions

View File

@@ -443,7 +443,7 @@ export class PostsService implements CanActivate {
}
changeUser(change_obj) {
return this.http.post(this.path + 'changeUser', {change_object: change_obj}, this.httpOptions);
return this.http.post(this.path + 'updateUser', {change_object: change_obj}, this.httpOptions);
}
deleteUser(uid) {