Compare commits

..

1 commit

Author SHA1 Message Date
V02460 fe4a0aec97
Merge 92084268f1 into 7bcc3ecb81 2025-06-05 14:02:37 +01:00
4 changed files with 1 additions and 15 deletions

View file

@ -1 +0,0 @@
Add `/_matrix/client/v1/room_summary/{roomIdOrAlias}` and extend `/_matrix/client/v1/rooms/{roomId}/hierarchy` with the new optional properties `allowed_room_ids`, `encryption` and `room_version` as per [MSC3266](https://github.com/matrix-org/matrix-spec-proposals/pull/3266).

View file

@ -17,8 +17,6 @@ title: "PublishedRoomsChunk"
properties: properties:
canonical_alias: canonical_alias:
type: string type: string
format: mx-room-alias
pattern: "^#"
description: The canonical alias of the room, if any. description: The canonical alias of the room, if any.
example: "#general:example.org" example: "#general:example.org"
name: name:
@ -31,8 +29,6 @@ properties:
example: 42 example: 42
room_id: room_id:
type: string type: string
format: mx-room-id
pattern: "^!"
description: The ID of the room. description: The ID of the room.
example: "!abcdefg:example.org" example: "!abcdefg:example.org"
topic: topic:

View file

@ -27,8 +27,6 @@ allOf:
type: array type: array
items: items:
type: string type: string
format: mx-room-id
pattern: "^!"
description: |- description: |-
If the room is a [restricted room](/server-server-api/#restricted-rooms), these are the room IDs which If the room is a [restricted room](/server-server-api/#restricted-rooms), these are the room IDs which
are specified by the join rules. Empty or omitted otherwise. are specified by the join rules. Empty or omitted otherwise.

View file

@ -46,13 +46,7 @@ paths:
required: true required: true
example: "#monkeys:matrix.org" example: "#monkeys:matrix.org"
schema: schema:
oneOf: type: string
- type: string
format: mx-room-id
pattern: "^!"
- type: string
format: mx-room-alias
pattern: "^#"
- in: query - in: query
name: via name: via
description: |- description: |-
@ -66,7 +60,6 @@ paths:
type: array type: array
items: items:
type: string type: string
format: mx-server-name
responses: responses:
"200": "200":
description: A summary of the room. description: A summary of the room.