summary refs log tree commit diff
path: root/synapse/api
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2015-12-22 13:58:18 +0000
committerMark Haines <mark.haines@matrix.org>2015-12-22 13:58:18 +0000
commitc058625959dd45f09f1838b4d7e98e4d73c193cf (patch)
treebe6fa0a73eebdb4b65b0e183d78130dc40923226 /synapse/api
parentHook up read receipts and typing notifications for guest access (diff)
parentMerge pull request #454 from matrix-org/markjh/room_filtering (diff)
downloadsynapse-c058625959dd45f09f1838b4d7e98e4d73c193cf.tar.xz
Merge remote-tracking branch 'origin/develop' into markjh/guest_access
Conflicts:
	synapse/api/filtering.py
Diffstat (limited to 'synapse/api')
-rw-r--r--synapse/api/filtering.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/synapse/api/filtering.py b/synapse/api/filtering.py
index 8c8c7b642e..5287aaa757 100644
--- a/synapse/api/filtering.py
+++ b/synapse/api/filtering.py
@@ -70,6 +70,11 @@ class Filtering(object):
     def _check_definition_room_lists(self, definition):
         """Check that "rooms" and "not_rooms" are lists of room ids if they
         are present
+
+        Args:
+            definition(dict): The filter definition
+        Raises:
+            SynapseError: If there was a problem with this definition.
         """
         # check rooms are valid room IDs
         room_id_keys = ["rooms", "not_rooms"]