mirror of
https://github.com/matrix-org/matrix-spec
synced 2026-07-01 19:57:48 +02:00
Update ordering behaviour for room directory listing
As per MSC4423
This commit is contained in:
parent
2b68fd935c
commit
57590f62a3
|
|
@ -137,8 +137,12 @@ paths:
|
||||||
description: |-
|
description: |-
|
||||||
Lists a server's published room directory.
|
Lists a server's published room directory.
|
||||||
|
|
||||||
This API returns paginated responses. The rooms are ordered by the number
|
This API returns paginated responses.
|
||||||
of joined members, with the largest rooms first.
|
|
||||||
|
{{% changed-in v="1.19" %}} The server determines the order of the rooms
|
||||||
|
returned by this endpoint. Previously, rooms were ordered with the largest
|
||||||
|
joined member count first. Continuing to order by largest first or another
|
||||||
|
stable order is recommended.
|
||||||
operationId: getPublicRooms
|
operationId: getPublicRooms
|
||||||
parameters:
|
parameters:
|
||||||
- in: query
|
- in: query
|
||||||
|
|
@ -177,8 +181,12 @@ paths:
|
||||||
description: |-
|
description: |-
|
||||||
Lists a server's published room directory with an optional filter.
|
Lists a server's published room directory with an optional filter.
|
||||||
|
|
||||||
This API returns paginated responses. The rooms are ordered by the number
|
This API returns paginated responses.
|
||||||
of joined members, with the largest rooms first.
|
|
||||||
|
{{% changed-in v="1.19" %}} The server determines the order of the rooms
|
||||||
|
returned by this endpoint. Previously, rooms were ordered with the largest
|
||||||
|
joined member count first. Continuing to order by largest first or another
|
||||||
|
stable order is recommended.
|
||||||
operationId: queryPublicRooms
|
operationId: queryPublicRooms
|
||||||
security:
|
security:
|
||||||
- accessTokenQuery: []
|
- accessTokenQuery: []
|
||||||
|
|
|
||||||
|
|
@ -22,8 +22,12 @@ paths:
|
||||||
description: |-
|
description: |-
|
||||||
Lists the server's published room directory.
|
Lists the server's published room directory.
|
||||||
|
|
||||||
This API returns paginated responses. The rooms are ordered by the number
|
This API returns paginated responses.
|
||||||
of joined members, with the largest rooms first.
|
|
||||||
|
{{% changed-in v="1.19" %}} The server determines the order of the rooms
|
||||||
|
returned by this endpoint. Previously, rooms were ordered with the largest
|
||||||
|
joined member count first. Continuing to order by largest first or another
|
||||||
|
stable order is recommended.
|
||||||
|
|
||||||
This SHOULD not return rooms that are listed on another homeserver's directory,
|
This SHOULD not return rooms that are listed on another homeserver's directory,
|
||||||
just those listed on the receiving homeserver's directory.
|
just those listed on the receiving homeserver's directory.
|
||||||
|
|
@ -76,8 +80,12 @@ paths:
|
||||||
description: |-
|
description: |-
|
||||||
Lists the server's published room directory with an optional filter.
|
Lists the server's published room directory with an optional filter.
|
||||||
|
|
||||||
This API returns paginated responses. The rooms are ordered by the number
|
This API returns paginated responses.
|
||||||
of joined members, with the largest rooms first.
|
|
||||||
|
{{% changed-in v="1.19" %}} The server determines the order of the rooms
|
||||||
|
returned by this endpoint. Previously, rooms were ordered with the largest
|
||||||
|
joined member count first. Continuing to order by largest first or another
|
||||||
|
stable order is recommended.
|
||||||
operationId: queryPublicRooms
|
operationId: queryPublicRooms
|
||||||
security:
|
security:
|
||||||
- signedRequest: []
|
- signedRequest: []
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue