diff options
author | Luke Barnard <lukeb@openmarket.com> | 2017-11-01 09:36:01 +0000 |
---|---|---|
committer | Luke Barnard <lukeb@openmarket.com> | 2017-11-01 09:36:01 +0000 |
commit | 318a249c8b84ed930368fd3c154a88a17d666356 (patch) | |
tree | 3918330b913a515399dae53049dd9f1b02a3caec /synapse | |
parent | Update docs for updating room group association (diff) | |
download | synapse-318a249c8b84ed930368fd3c154a88a17d666356.tar.xz |
Leave `is_public` as required argument of update_room_group_association
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/storage/group_server.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/group_server.py b/synapse/storage/group_server.py index a7a43de279..f6924e1a32 100644 --- a/synapse/storage/group_server.py +++ b/synapse/storage/group_server.py @@ -846,7 +846,7 @@ class GroupServerStore(SQLBaseStore): ) return self.runInteraction("remove_user_from_group", _remove_user_from_group_txn) - def update_room_group_association(self, group_id, room_id, is_public=True): + def update_room_group_association(self, group_id, room_id, is_public): return self._simple_upsert( table="group_rooms", keyvalues={ |