diff options
author | Erik Johnston <erik@matrix.org> | 2017-07-20 09:46:33 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-07-20 09:46:33 +0100 |
commit | 6f443a74cf6ab0bfe452289f9888580725987765 (patch) | |
tree | c993649ca55493d35e9be821b2768dbee30531df /synapse/handlers/groups_local.py | |
parent | Comments (diff) | |
download | synapse-6f443a74cf6ab0bfe452289f9888580725987765.tar.xz |
Add update group profile API
Diffstat (limited to 'synapse/handlers/groups_local.py')
-rw-r--r-- | synapse/handlers/groups_local.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/handlers/groups_local.py b/synapse/handlers/groups_local.py index 0b80348c82..b2c920da38 100644 --- a/synapse/handlers/groups_local.py +++ b/synapse/handlers/groups_local.py @@ -72,6 +72,7 @@ class GroupsLocalHandler(object): # or federation depending on if the group is local or remote get_group_profile = _create_rerouter("get_group_profile") + update_group_profile = _create_rerouter("update_group_profile") get_rooms_in_group = _create_rerouter("get_rooms_in_group") add_room_to_group = _create_rerouter("add_room_to_group") |