mirror of
https://github.com/matrix-org/matrix-spec
synced 2026-01-09 01:13:42 +01:00
Fixes https://github.com/matrix-org/matrix-doc/issues/2066 The expectation everywhere is that the `sender` is required. `/initialSync` references StrippedState through a `m.room.member` event reference, and does not need editing.
19 lines
354 B
JSON
19 lines
354 B
JSON
[
|
|
{
|
|
"type": "m.room.name",
|
|
"sender": "@bob:example.org",
|
|
"state_key": "",
|
|
"content": {
|
|
"name": "Example Room"
|
|
}
|
|
},
|
|
{
|
|
"type": "m.room.join_rules",
|
|
"sender": "@bob:example.org",
|
|
"state_key": "",
|
|
"content": {
|
|
"join_rule": "invite"
|
|
}
|
|
}
|
|
]
|