diff options
author | Eric Eastwood <eric.eastwood@beta.gouv.fr> | 2024-07-31 13:20:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-31 13:20:23 -0500 |
commit | 2b620e0a150ea86bc8ad0814110bef51d6e3e930 (patch) | |
tree | 654b7ca0c3e236e4753f61933dd029088b692f01 /synapse/rest | |
parent | Sliding Sync: Split and move tests (#17504) (diff) | |
download | synapse-2b620e0a150ea86bc8ad0814110bef51d6e3e930.tar.xz |
Sliding Sync: Add typing notification extension (MSC3961) (#17505)
[MSC3961](https://github.com/matrix-org/matrix-spec-proposals/pull/3961): Sliding Sync Extension: Typing Notifications Based on [MSC3575](https://github.com/matrix-org/matrix-spec-proposals/pull/3575): Sliding Sync
Diffstat (limited to 'synapse/rest')
-rw-r--r-- | synapse/rest/client/sync.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/synapse/rest/client/sync.py b/synapse/rest/client/sync.py index c607d08de5..4f2c552af2 100644 --- a/synapse/rest/client/sync.py +++ b/synapse/rest/client/sync.py @@ -1152,10 +1152,14 @@ class SlidingSyncRestServlet(RestServlet): if extensions.receipts is not None: serialized_extensions["receipts"] = { - # Same as the the top-level `account_data.events` field in Sync v2. "rooms": extensions.receipts.room_id_to_receipt_map, } + if extensions.typing is not None: + serialized_extensions["typing"] = { + "rooms": extensions.typing.room_id_to_typing_map, + } + return serialized_extensions |