summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthew Hodgson <matthew@matrix.org>2018-05-29 04:26:10 +0100
committerMatthew Hodgson <matthew@matrix.org>2018-05-29 04:26:10 +0100
commit9bbb9f5556496529478753d2123526ca6894535c (patch)
tree0f5cd6636f5145c90b9af1dcdb1736f37431e877
parentpep8 (diff)
downloadsynapse-9bbb9f5556496529478753d2123526ca6894535c.tar.xz
add lazy_load_members to the filter json schema
-rw-r--r--synapse/api/filtering.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/synapse/api/filtering.py b/synapse/api/filtering.py
index 7158dd75e9..fd58961862 100644
--- a/synapse/api/filtering.py
+++ b/synapse/api/filtering.py
@@ -112,7 +112,10 @@ ROOM_EVENT_FILTER_SCHEMA = {
         },
         "contains_url": {
             "type": "boolean"
-        }
+        },
+        "lazy_load_members": {
+            "type": "boolean"
+        },
     }
 }