diff options
author | Erik Johnston <erik@matrix.org> | 2017-10-23 15:19:28 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-10-23 15:21:24 +0100 |
commit | ce6d4914f4e02a812643de252d8d456a84102893 (patch) | |
tree | f78a16a3b400eb4776346d14c48d1fb783b0271b /synapse/federation/transport/client.py | |
parent | Merge branch 'master' of github.com:matrix-org/synapse into develop (diff) | |
download | synapse-ce6d4914f4e02a812643de252d8d456a84102893.tar.xz |
Correctly wire in update group profile over federation
Diffstat (limited to 'synapse/federation/transport/client.py')
-rw-r--r-- | synapse/federation/transport/client.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/synapse/federation/transport/client.py b/synapse/federation/transport/client.py index 125d8f3598..d25ae1b282 100644 --- a/synapse/federation/transport/client.py +++ b/synapse/federation/transport/client.py @@ -486,6 +486,26 @@ class TransportLayerClient(object): ) @log_function + def update_group_profile(self, destination, group_id, requester_user_id, content): + """Update a remote group profile + + Args: + destination (str) + group_id (str) + requester_user_id (str) + content (dict): The new profile of the group + """ + path = PREFIX + "/groups/%s/profile" % (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 get_group_summary(self, destination, group_id, requester_user_id): """Get a group summary """ |