summary refs log tree commit diff
path: root/synapse/handlers
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2015-12-22 10:25:46 +0000
committerMark Haines <mark.haines@matrix.org>2015-12-22 10:25:46 +0000
commit45a9e0ae0c9a4c55d4648802fefe96cc2933304f (patch)
tree50b17b847dadcaf7fb89d886cfb3cc07a47dc488 /synapse/handlers
parentAdd top level filtering by room id (diff)
downloadsynapse-45a9e0ae0c9a4c55d4648802fefe96cc2933304f.tar.xz
Allow guest access if the user provides a list of rooms in the filter
Diffstat (limited to 'synapse/handlers')
-rw-r--r--synapse/handlers/sync.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/handlers/sync.py b/synapse/handlers/sync.py

index 7088c20cb4..75ef742328 100644 --- a/synapse/handlers/sync.py +++ b/synapse/handlers/sync.py
@@ -29,6 +29,7 @@ logger = logging.getLogger(__name__) SyncConfig = collections.namedtuple("SyncConfig", [ "user", + "is_guest", "filter", ])