]> Untitled Git - lemmy.git/commitdiff
Add API docs for DeleteAccount and theme
authorDessalines <tyhou13@gmx.com>
Wed, 16 Oct 2019 23:00:53 +0000 (16:00 -0700)
committerDessalines <tyhou13@gmx.com>
Wed, 16 Oct 2019 23:00:53 +0000 (16:00 -0700)
- Fixes #298

docs/api.md

index 95ccd89e6d07584a12982f25d077c5736c2dca0c..95d6970ea022d1db7541a6e315721ede4cfd7ab4 100644 (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