diff options
author | Matthew Hodgson <matthew@matrix.org> | 2018-05-29 04:26:10 +0100 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2018-05-29 04:26:10 +0100 |
commit | 9bbb9f5556496529478753d2123526ca6894535c (patch) | |
tree | 0f5cd6636f5145c90b9af1dcdb1736f37431e877 /synapse/api | |
parent | pep8 (diff) | |
download | synapse-9bbb9f5556496529478753d2123526ca6894535c.tar.xz |
add lazy_load_members to the filter json schema
Diffstat (limited to 'synapse/api')
-rw-r--r-- | synapse/api/filtering.py | 5 |
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" + }, } } |