Skip to content
Snippets Groups Projects
Commit ba64c3b6 authored by Brendan Abolivier's avatar Brendan Abolivier
Browse files

Merge branch 'release-v1.9.0' of github.com:matrix-org/synapse into release-v1.9.0

parents f3eac2b3 d31f5f4d
No related branches found
No related tags found
No related merge requests found
Fix endpoint documentation for the List Rooms admin api.
\ No newline at end of file
...@@ -46,7 +46,7 @@ The following fields are possible in the JSON response body: ...@@ -46,7 +46,7 @@ The following fields are possible in the JSON response body:
A standard request with no filtering: A standard request with no filtering:
``` ```
GET /_synapse/admin/rooms GET /_synapse/admin/v1/rooms
{} {}
``` ```
...@@ -78,7 +78,7 @@ Response: ...@@ -78,7 +78,7 @@ Response:
Filtering by room name: Filtering by room name:
``` ```
GET /_synapse/admin/rooms?search_term=TWIM GET /_synapse/admin/v1/rooms?search_term=TWIM
{} {}
``` ```
...@@ -103,7 +103,7 @@ Response: ...@@ -103,7 +103,7 @@ Response:
Paginating through a list of rooms: Paginating through a list of rooms:
``` ```
GET /_synapse/admin/rooms?order_by=size GET /_synapse/admin/v1/rooms?order_by=size
{} {}
``` ```
...@@ -139,7 +139,7 @@ To get the next batch of room results, we repeat our request, setting the `from` ...@@ -139,7 +139,7 @@ To get the next batch of room results, we repeat our request, setting the `from`
parameter to the value of `next_token`. parameter to the value of `next_token`.
``` ```
GET /_synapse/admin/rooms?order_by=size&from=100 GET /_synapse/admin/v1/rooms?order_by=size&from=100
{} {}
``` ```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment