diff options
author | Dirk Klimpel <5740567+dklimpel@users.noreply.github.com> | 2021-11-02 11:01:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-02 10:01:13 +0000 |
commit | 753720184042e01bf56478d15bd8c8db11da4b69 (patch) | |
tree | a8118023bb4e6bea7b44bb979393ec4e5942b279 /docs | |
parent | ObservableDeferred: run observers in order (#11229) (diff) | |
download | synapse-753720184042e01bf56478d15bd8c8db11da4b69.tar.xz |
Add search by room ID and room alias to List Room admin API (#11099)
Fixes: #10874 Signed-off-by: Dirk Klimpel dirk@klimpel.org
Diffstat (limited to 'docs')
-rw-r--r-- | docs/admin_api/rooms.md | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/docs/admin_api/rooms.md b/docs/admin_api/rooms.md index 62eeff9e1a..1fc3cc3c42 100644 --- a/docs/admin_api/rooms.md +++ b/docs/admin_api/rooms.md @@ -38,9 +38,14 @@ The following query parameters are available: - `history_visibility` - Rooms are ordered alphabetically by visibility of history of the room. - `state_events` - Rooms are ordered by number of state events. Largest to smallest. * `dir` - Direction of room order. Either `f` for forwards or `b` for backwards. Setting - this value to `b` will reverse the above sort order. Defaults to `f`. -* `search_term` - Filter rooms by their room name. Search term can be contained in any - part of the room name. Defaults to no filtering. + this value to `b` will reverse the above sort order. Defaults to `f`. +* `search_term` - Filter rooms by their room name, canonical alias and room id. + Specifically, rooms are selected if the search term is contained in + - the room's name, + - the local part of the room's canonical alias, or + - the complete (local and server part) room's id (case sensitive). + + Defaults to no filtering. **Response** |