diff options
author | Erik Johnston <erik@matrix.org> | 2017-07-18 10:31:59 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-07-18 10:35:18 +0100 |
commit | cccfcfa7b9e2af28bb56d6f970754fe5aa07ad56 (patch) | |
tree | c9b739a55b62a1557b09c6ba1fe3319f7733a3b8 /synapse/handlers/groups_local.py | |
parent | Use transport client directly (diff) | |
download | synapse-cccfcfa7b9e2af28bb56d6f970754fe5aa07ad56.tar.xz |
Comments
Diffstat (limited to 'synapse/handlers/groups_local.py')
-rw-r--r-- | synapse/handlers/groups_local.py | 3 |
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") |