We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is your feature request related to a problem? Please describe. It would be nice to have a way to delete an account on the official spacebar instance.
Describe the solution you'd like A delete button in the settings area
The text was updated successfully, but these errors were encountered:
Despite an API endpoint being available (https://docs.spacebar.chat/routes/#post-/users/@me/delete/ AKA users/@me/delete), an internal server error occurs:
users/@me/delete
{"code":500,"message":"Error: data and hash arguments required"}
The API documentation lists no such arguments.
Undocumented API: https://github.com/spacebarchat/server/blob/master/src/api/routes/users/%40me/delete.ts#L50 The error above is from a TypeScript library, and the server is looking for password in the data.
password
curl 'https://old.server.spacebar.chat/api/users/@me/delete' \ -X 'POST' \ -H 'Content-Type: application/json' \ --data '{"password":"<password>"}' \ -H 'authorization: <fetched from browser>'
Sorry, something went wrong.
No branches or pull requests
Is your feature request related to a problem? Please describe.
It would be nice to have a way to delete an account on the official spacebar instance.
Describe the solution you'd like
A delete button in the settings area
The text was updated successfully, but these errors were encountered: