From: Dessalines Date: Mon, 20 Jan 2020 23:49:54 +0000 (-0500) Subject: Fixing last. X-Git-Url: http://these/git/?a=commitdiff_plain;h=7914fd949cc13ba3c5aba5b66458591086bd67ae;p=lemmy.git Fixing last. --- diff --git a/docs/src/contributing_websocket_http_api.md b/docs/src/contributing_websocket_http_api.md index c6db490b..eea77e8b 100644 --- a/docs/src/contributing_websocket_http_api.md +++ b/docs/src/contributing_websocket_http_api.md @@ -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, limit: Option, + auth?: Option, } } ``` @@ -632,8 +633,11 @@ Search types are `Both, Comments, Posts`. { op: "Search", data: { + type_: String, comments: Vec, posts: Vec, + communities: Vec, + users: Vec, } } ```