diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-04-12 08:42:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-12 08:42:03 -0400 |
commit | 86cf6a3a17376dd83a9222f77521d1619b528d66 (patch) | |
tree | 3552f7be218aa0079d3a6edaddf4614566f1d25c /synapse/rest | |
parent | Add some type hints to datastore (#12423) (diff) | |
download | synapse-86cf6a3a17376dd83a9222f77521d1619b528d66.tar.xz |
Remove references to unstable identifiers from MSC3440. (#12382)
Removes references to unstable thread relation, unstable identifiers for filtering parameters, and the experimental config flag.
Diffstat (limited to 'synapse/rest')
-rw-r--r-- | synapse/rest/client/versions.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/synapse/rest/client/versions.py b/synapse/rest/client/versions.py index 9a65aa4843..7ee6b5505b 100644 --- a/synapse/rest/client/versions.py +++ b/synapse/rest/client/versions.py @@ -100,7 +100,6 @@ class VersionsRestServlet(RestServlet): # Adds support for jump to date endpoints (/timestamp_to_event) as per MSC3030 "org.matrix.msc3030": self.config.experimental.msc3030_enabled, # Adds support for thread relations, per MSC3440. - "org.matrix.msc3440": self.config.experimental.msc3440_enabled, "org.matrix.msc3440.stable": True, # TODO: remove when "v1.3" is added above }, }, |