Add API docs for DeleteAccount and theme

- Fixes #298
pull/300/head
Dessalines 2019-10-16 16:00:53 -07:00
parent 51e9f4c57f
commit b93b98a0ce
1 changed files with 22 additions and 0 deletions

22
docs/api.md vendored
View File

@ -149,6 +149,7 @@ Only the first user will be able to be the admin.
op: "SaveUserSettings",
data: {
show_nsfw: bool,
theme: String, // Default 'darkly'
auth: String
}
}
@ -200,6 +201,27 @@ Only the first user will be able to be the admin.
}
```
#### Delete Account
*Permananently deletes your posts and comments*
##### Request
```rust
{
op: "DeleteAccount",
data: {
auth: String
}
}
```
##### Response
```rust
{
op: String,
jwt: String,
}
```
#### Add admin
##### Request
```rust