diff options
author | Erik Johnston <erik@matrix.org> | 2017-07-10 14:53:19 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-07-20 16:36:42 +0100 |
commit | c544188ee3644c85a97a3c4e09e63ad4e3c6f0cc (patch) | |
tree | 6e8f40f857d42827b2fef0c1f6e150480ff870f3 /synapse/rest/client | |
parent | Merge pull request #2374 from matrix-org/erikj/group_server_local (diff) | |
download | synapse-c544188ee3644c85a97a3c4e09e63ad4e3c6f0cc.tar.xz |
Add groups to sync stream
Diffstat (limited to 'synapse/rest/client')
-rw-r--r-- | synapse/rest/client/v2_alpha/sync.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/synapse/rest/client/v2_alpha/sync.py b/synapse/rest/client/v2_alpha/sync.py index 6dcc407451..5f208a4c1c 100644 --- a/synapse/rest/client/v2_alpha/sync.py +++ b/synapse/rest/client/v2_alpha/sync.py @@ -199,6 +199,11 @@ class SyncRestServlet(RestServlet): "invite": invited, "leave": archived, }, + "groups": { + "join": sync_result.groups.join, + "invite": sync_result.groups.invite, + "leave": sync_result.groups.leave, + }, "device_one_time_keys_count": sync_result.device_one_time_keys_count, "next_batch": sync_result.next_batch.to_string(), } |