diff options
author | Luke Barnard <luke@matrix.org> | 2018-04-03 15:40:43 +0100 |
---|---|---|
committer | Luke Barnard <luke@matrix.org> | 2018-04-03 16:16:40 +0100 |
commit | eb8d8d6f57c7f6017548aa95409bb8cc346a5ae0 (patch) | |
tree | aa99b62a30badf0669b8e0ccae3960a9bdfd490e /synapse/federation/transport/client.py | |
parent | This should probably be a PUT (diff) | |
download | synapse-eb8d8d6f57c7f6017548aa95409bb8cc346a5ae0.tar.xz |
Use join_policy API instead of joinable
The API is now under /groups/$group_id/setting/m.join_policy and expects a JSON blob of the shape ```json { "m.join_policy": { "type": "invite" } } ``` where "invite" could alternatively be "open".
Diffstat (limited to 'synapse/federation/transport/client.py')
-rw-r--r-- | synapse/federation/transport/client.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/federation/transport/client.py b/synapse/federation/transport/client.py index 5a6b63350b..0f7f656824 100644 --- a/synapse/federation/transport/client.py +++ b/synapse/federation/transport/client.py @@ -860,9 +860,9 @@ class TransportLayerClient(object): @log_function def set_group_joinable(self, destination, group_id, requester_user_id, content): - """Sets whether a group is joinable without an invite or knock + """Sets the join policy for a group """ - path = PREFIX + "/groups/%s/joinable" % (group_id,) + path = PREFIX + "/groups/%s/setting/m.join_policy" % (group_id,) return self.client.post_json( destination=destination, |