summary refs log tree commit diff
path: root/synapse/handlers/groups_local.py
diff options
context:
space:
mode:
authorErik Johnston <erikj@jki.re>2017-11-09 15:20:24 +0000
committerGitHub <noreply@github.com>2017-11-09 15:20:24 +0000
commit0fcb5a8ce5e0c52b9cb2cd80ef2f737b087fadab (patch)
treeee3712f658974e07b8aa6dbe4263972b5f6e006f /synapse/handlers/groups_local.py
parentMerge pull request #2631 from xyzz/fix_appservice_event_backlog (diff)
parentAdd brackets (diff)
downloadsynapse-0fcb5a8ce5e0c52b9cb2cd80ef2f737b087fadab.tar.xz
Merge pull request #2651 from matrix-org/erikj/update_group_room_settings
Change so that update group room visibility isn't an upsert
Diffstat (limited to 'synapse/handlers/groups_local.py')
-rw-r--r--synapse/handlers/groups_local.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/synapse/handlers/groups_local.py b/synapse/handlers/groups_local.py
index dabc2a3fbb..da00aeb0f4 100644
--- a/synapse/handlers/groups_local.py
+++ b/synapse/handlers/groups_local.py
@@ -70,8 +70,9 @@ class GroupsLocalHandler(object):
 
     get_invited_users_in_group = _create_rerouter("get_invited_users_in_group")
 
-    update_room_group_association = _create_rerouter("update_room_group_association")
-    delete_room_group_association = _create_rerouter("delete_room_group_association")
+    add_room_to_group = _create_rerouter("add_room_to_group")
+    update_room_in_group = _create_rerouter("update_room_in_group")
+    remove_room_from_group = _create_rerouter("remove_room_from_group")
 
     update_group_summary_room = _create_rerouter("update_group_summary_room")
     delete_group_summary_room = _create_rerouter("delete_group_summary_room")