Review comments

This commit is contained in:
Kegan Dougal 2015-10-19 13:28:44 +01:00
parent 83d21484df
commit bbd3f8072c
2 changed files with 3 additions and 1 deletions

View file

@ -67,6 +67,7 @@
"type": "object",
"title": "StrippedState",
"description": "A stripped down state event, with only the ``type``, ``state_key`` and ``content`` keys.",
"required": ["type", "state_key", "content"],
"properties": {
"type": {
"type": "string",

View file

@ -532,7 +532,8 @@ class MatrixUnits(Units):
Units.prop(json_schema, "properties/content")
)
# this is horrible
# This is horrible because we're special casing a key on m.room.member.
# We need to do this because we want to document a non-content object.
if schema["type"] == "m.room.member":
invite_room_state = get_json_schema_object_fields(
json_schema["properties"]["invite_room_state"]["items"]