summary refs log tree commit diff
path: root/synapse/handlers
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2017-07-18 10:31:59 +0100
committerErik Johnston <erik@matrix.org>2017-07-18 10:35:18 +0100
commitcccfcfa7b9e2af28bb56d6f970754fe5aa07ad56 (patch)
treec9b739a55b62a1557b09c6ba1fe3319f7733a3b8 /synapse/handlers
parentUse transport client directly (diff)
downloadsynapse-cccfcfa7b9e2af28bb56d6f970754fe5aa07ad56.tar.xz
Comments
Diffstat (limited to 'synapse/handlers')
-rw-r--r--synapse/handlers/groups_local.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/handlers/groups_local.py b/synapse/handlers/groups_local.py

index e0f53120be..0857b14c7a 100644 --- a/synapse/handlers/groups_local.py +++ b/synapse/handlers/groups_local.py
@@ -64,6 +64,9 @@ class GroupsLocalHandler(object): # Ensure attestations get renewed hs.get_groups_attestation_renewer() + # The following functions merely route the query to the local groups server + # or federation depending on if the group is local or remote + get_group_profile = _create_rerouter("get_group_profile") get_rooms_in_group = _create_rerouter("get_rooms_in_group")