]> Untitled Git - lemmy.git/commitdiff
Fixing last.
authorDessalines <tyhou13@gmx.com>
Mon, 20 Jan 2020 23:49:54 +0000 (18:49 -0500)
committerDessalines <tyhou13@gmx.com>
Mon, 20 Jan 2020 23:49:54 +0000 (18:49 -0500)
docs/src/contributing_websocket_http_api.md

index c6db490ba8ad8eac2ea5c3402501698b2cbd00ab..eea77e8bb757b8ae1c0d014b26716636c0a5ced3 100644 (file)
@@ -611,7 +611,7 @@ Marks all user replies and mentions as read.
 
 #### Search
 
-Search types are `Both, Comments, Posts`.
+Search types are `All, Comments, Posts, Communities, Users, Url`
 
 ##### Request
 ```rust
@@ -624,6 +624,7 @@ Search types are `Both, Comments, Posts`.
     sort: String,
     page: Option<i64>,
     limit: Option<i64>,
+    auth?: Option<String>,
   }
 }
 ```
@@ -632,8 +633,11 @@ Search types are `Both, Comments, Posts`.
 {
   op: "Search",
   data: {
+    type_: String,
     comments: Vec<CommentView>,
     posts: Vec<PostView>,
+    communities: Vec<CommunityView>,
+    users: Vec<UserView>,
   }
 }
 ```