Add API docs for DeleteAccount and theme

- Fixes #298
This commit is contained in:
Dessalines 2019-10-16 16:00:53 -07:00
parent 45a04070a3
commit d1a01c38ed

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