mirror of
https://github.com/matrix-org/matrix-spec
synced 2026-01-22 07:13:43 +01:00
Fix the state_key in the example v2 response, include the "sender" key in the list of keys included with invite_state events
This commit is contained in:
parent
a7b808c5cd
commit
bbb5fa9398
|
|
@ -138,8 +138,8 @@ paths:
|
||||||
invite_state:
|
invite_state:
|
||||||
description: |-
|
description: |-
|
||||||
The state of a room that the user has been invited to.
|
The state of a room that the user has been invited to.
|
||||||
These state events may only have the ``type``,
|
These state events may only have the `sender``,
|
||||||
``state_key`` and ``content`` keys present.
|
``type``, ``state_key`` and ``content`` keys present.
|
||||||
These events do not replace any state that the client
|
These events do not replace any state that the client
|
||||||
already has for the room, for example if the client has
|
already has for the room, for example if the client has
|
||||||
archived the room. Instead the client should keep two
|
archived the room. Instead the client should keep two
|
||||||
|
|
@ -230,13 +230,13 @@ paths:
|
||||||
{
|
{
|
||||||
"sender": "@alice:example.com",
|
"sender": "@alice:example.com",
|
||||||
"type": "m.room.name",
|
"type": "m.room.name",
|
||||||
"state_key": "@alice:example.com",
|
"state_key": "",
|
||||||
"content": {"name": "My Room Name"}
|
"content": {"name": "My Room Name"}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"sender": "@alice:example.com",
|
"sender": "@alice:example.com",
|
||||||
"type": "m.room.name",
|
"type": "m.room.name",
|
||||||
"state_key": "",
|
"state_key": "@bob:example.com",
|
||||||
"content": {"membership": "invite"}
|
"content": {"membership": "invite"}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue