diff options
author | Erik Johnston <erik@matrix.org> | 2017-09-26 15:52:41 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-09-26 15:52:41 +0100 |
commit | 17b8e2bd02ad0abbd25103b637eb8490f3a53507 (patch) | |
tree | 889b3b1cbfc30181fe7c9e67e122d3c0f1cc5d03 /synapse/federation/transport/client.py | |
parent | Add unique index to group_rooms table (diff) | |
download | synapse-17b8e2bd02ad0abbd25103b637eb8490f3a53507.tar.xz |
Add remove room API
Diffstat (limited to 'synapse/federation/transport/client.py')
-rw-r--r-- | synapse/federation/transport/client.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/synapse/federation/transport/client.py b/synapse/federation/transport/client.py index ce68cc4937..36f6eb75e9 100644 --- a/synapse/federation/transport/client.py +++ b/synapse/federation/transport/client.py @@ -525,6 +525,18 @@ class TransportLayerClient(object): ignore_backoff=True, ) + def remove_room_from_group(self, destination, group_id, requester_user_id, room_id): + """Remove a room from a group + """ + path = PREFIX + "/groups/%s/room/%s" % (group_id, room_id,) + + return self.client.delete_json( + destination=destination, + path=path, + args={"requester_user_id": requester_user_id}, + ignore_backoff=True, + ) + @log_function def get_users_in_group(self, destination, group_id, requester_user_id): """Get users in a group |