diff options
author | Šimon Brandner <simon.bra.ag@gmail.com> | 2022-08-05 17:09:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-05 11:09:33 -0400 |
commit | ab18441573dc14cea1fe4082b2a89b9d392a4b9f (patch) | |
tree | 6d2b45d497dc30c7ff36e096f4916b2183e530ed /synapse/rest/client/versions.py | |
parent | Use literals in place of `HTTPStatus` constants in tests (#13463) (diff) | |
download | synapse-ab18441573dc14cea1fe4082b2a89b9d392a4b9f.tar.xz |
Support stable identifiers for MSC2285: private read receipts. (#13273)
This adds support for the stable identifiers of MSC2285 while continuing to support the unstable identifiers behind the configuration flag. These will be removed in a future version.
Diffstat (limited to 'synapse/rest/client/versions.py')
-rw-r--r-- | synapse/rest/client/versions.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/rest/client/versions.py b/synapse/rest/client/versions.py index 0366986755..c9a830cbac 100644 --- a/synapse/rest/client/versions.py +++ b/synapse/rest/client/versions.py @@ -94,6 +94,7 @@ class VersionsRestServlet(RestServlet): # Supports the busy presence state described in MSC3026. "org.matrix.msc3026.busy_presence": self.config.experimental.msc3026_enabled, # Supports receiving private read receipts as per MSC2285 + "org.matrix.msc2285.stable": True, # TODO: Remove when MSC2285 becomes a part of the spec "org.matrix.msc2285": self.config.experimental.msc2285_enabled, # Supports filtering of /publicRooms by room type as per MSC3827 "org.matrix.msc3827.stable": True, |