Review comments

invite-room-state
Kegan Dougal 9 years ago
parent 83d21484df
commit bbd3f8072c

@ -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",

@ -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"]

Loading…
Cancel
Save