Merge branch 'master' into module-typing2

Conflicts:
	specification/modules/typing_notifications.rst
This commit is contained in:
Kegan Dougal 2015-10-01 15:47:46 +01:00
commit 1520f3647f
15 changed files with 189 additions and 24 deletions

View file

@ -32,6 +32,26 @@
"type": {
"type": "string",
"enum": ["m.room.member"]
},
"invite_room_state": {
"type": "array",
"description": "A subset of the state of the room at the time of the invite, if ``membership`` is ``invite``",
"items": {
"type": "object",
"title": "StateEvent",
"description": "A stripped down state event, with only the ``type``, ``state_key`` and ``content`` keys.",
"properties": {
"type": {
"type": "string"
},
"state_key": {
"type": "string"
},
"content": {
"type": "object"
}
}
}
}
}
}