diff options
author | Erik Johnston <erik@matrix.org> | 2017-08-09 13:36:22 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-08-09 13:36:22 +0100 |
commit | ef8e5786770ff285ebdf1fce420b5aa86437673c (patch) | |
tree | 61cad1a476d1d43cda40162ec4303dc625feb0e8 /synapse/federation/transport/client.py | |
parent | Allow update group publicity (diff) | |
download | synapse-ef8e5786770ff285ebdf1fce420b5aa86437673c.tar.xz |
Add bulk group publicised lookup API
Diffstat (limited to 'synapse/federation/transport/client.py')
-rw-r--r-- | synapse/federation/transport/client.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/synapse/federation/transport/client.py b/synapse/federation/transport/client.py index 073d3abb2a..ce68cc4937 100644 --- a/synapse/federation/transport/client.py +++ b/synapse/federation/transport/client.py @@ -812,3 +812,18 @@ class TransportLayerClient(object): args={"requester_user_id": requester_user_id}, ignore_backoff=True, ) + + def bulk_get_publicised_groups(self, destination, user_ids): + """Get the groups a list of users are publicising + """ + + path = PREFIX + "/get_groups_publicised" + + content = {"user_ids": user_ids} + + return self.client.post_json( + destination=destination, + path=path, + data=content, + ignore_backoff=True, + ) |