mirror of
https://github.com/matrix-org/matrix-spec
synced 2026-08-04 06:57:48 +02:00
Compare commits
No commits in common. "dbbc428095c859e7c4fc5488d45bd346bc35f561" and "6897b6bfd51d33b8ecc39e8fdc27720faeee88ac" have entirely different histories.
dbbc428095
...
6897b6bfd5
|
|
@ -1 +0,0 @@
|
||||||
Fix various typos throughout the specification.
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
The room directory now returns rooms in a server-defined order rather than largest first, as per [MSC4423](https://github.com/matrix-org/matrix-spec-proposals/pull/4423).
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
The room directory now returns rooms in a server-defined order rather than largest first, as per [MSC4423](https://github.com/matrix-org/matrix-spec-proposals/pull/4423).
|
|
||||||
|
|
@ -203,8 +203,8 @@ paths:
|
||||||
"user_id": "@alice:example.com",
|
"user_id": "@alice:example.com",
|
||||||
"device_id": "HIJKLMN",
|
"device_id": "HIJKLMN",
|
||||||
"algorithms": [
|
"algorithms": [
|
||||||
"m.olm.v1.curve25519-aes-sha2",
|
"m.olm.v1.curve25519-aes-sha256",
|
||||||
"m.megolm.v1.aes-sha2"
|
"m.megolm.v1.aes-sha"
|
||||||
],
|
],
|
||||||
"keys": {
|
"keys": {
|
||||||
"curve25519:HIJKLMN": "base64+curve25519+key",
|
"curve25519:HIJKLMN": "base64+curve25519+key",
|
||||||
|
|
|
||||||
|
|
@ -137,12 +137,8 @@ paths:
|
||||||
description: |-
|
description: |-
|
||||||
Lists a server's published room directory.
|
Lists a server's published room directory.
|
||||||
|
|
||||||
This API returns paginated responses.
|
This API returns paginated responses. The rooms are ordered by the number
|
||||||
|
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
|
||||||
|
|
@ -181,12 +177,8 @@ 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.
|
This API returns paginated responses. The rooms are ordered by the number
|
||||||
|
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,12 +22,8 @@ paths:
|
||||||
description: |-
|
description: |-
|
||||||
Lists the server's published room directory.
|
Lists the server's published room directory.
|
||||||
|
|
||||||
This API returns paginated responses.
|
This API returns paginated responses. The rooms are ordered by the number
|
||||||
|
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.
|
||||||
|
|
@ -80,12 +76,8 @@ 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.
|
This API returns paginated responses. The rooms are ordered by the number
|
||||||
|
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