diff options
author | David Baker <dave@matrix.org> | 2018-03-28 14:03:37 +0100 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2018-03-28 14:03:37 +0100 |
commit | 79452edeee94a09a826ee2b41a08811b823a3ad6 (patch) | |
tree | bdaa7170826c96481040394a679e5970f9d69d85 /synapse/federation/transport/client.py | |
parent | fix typo (diff) | |
download | synapse-79452edeee94a09a826ee2b41a08811b823a3ad6.tar.xz |
Add joinability for groups
Adds API to set the 'joinable' flag, and corresponding flag in the table.
Diffstat (limited to 'synapse/federation/transport/client.py')
-rw-r--r-- | synapse/federation/transport/client.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/synapse/federation/transport/client.py b/synapse/federation/transport/client.py index 5488e82985..46a797b4ba 100644 --- a/synapse/federation/transport/client.py +++ b/synapse/federation/transport/client.py @@ -1,5 +1,6 @@ # -*- coding: utf-8 -*- # Copyright 2014-2016 OpenMarket Ltd +# Copyright 2018 New Vector Ltd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -857,6 +858,22 @@ 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 + """ + path = PREFIX + "/groups/%s/joinable" % (group_id,) + + return self.client.post_json( + destination=destination, + path=path, + args={"requester_user_id": requester_user_id}, + data=content, + ignore_backoff=True, + ) + + + @log_function def delete_group_summary_user(self, destination, group_id, requester_user_id, user_id, role_id): """Delete a users entry in a group |