diff options
author | Šimon Brandner <simon.bra.ag@gmail.com> | 2021-07-28 10:05:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-28 10:05:11 +0200 |
commit | c3b037795a927ecf58fd3ab099c2a751f05de4d5 (patch) | |
tree | 4a738dc5124b065096bd2c64bdd6142c9543e928 /synapse/api | |
parent | Document Complement dev usage (#10483) (diff) | |
download | synapse-c3b037795a927ecf58fd3ab099c2a751f05de4d5.tar.xz |
Support for MSC2285 (hidden read receipts) (#10413)
Implementation of matrix-org/matrix-doc#2285
Diffstat (limited to 'synapse/api')
-rw-r--r-- | synapse/api/constants.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/synapse/api/constants.py b/synapse/api/constants.py index 4caafc0ac9..56e7233b9e 100644 --- a/synapse/api/constants.py +++ b/synapse/api/constants.py @@ -224,3 +224,7 @@ class HistoryVisibility: JOINED = "joined" SHARED = "shared" WORLD_READABLE = "world_readable" + + +class ReadReceiptEventFields: + MSC2285_HIDDEN = "org.matrix.msc2285.hidden" |