diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-02-28 13:29:09 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-28 18:29:09 +0000 |
commit | 1866fb39d7ffc86d7374a9aed916f70a91ec65fa (patch) | |
tree | 85b49b4d5c9c19a1c32adeb088360fcd96245be3 /synapse/rest/client/capabilities.py | |
parent | Add type hints to `tests/rest/client` (#12084) (diff) | |
download | synapse-1866fb39d7ffc86d7374a9aed916f70a91ec65fa.tar.xz |
Move experimental support for MSC3440 to /versions. (#12099)
Instead of being part of /capabilities, this matches a change to MSC3440 to properly use these endpoints.
Diffstat (limited to 'synapse/rest/client/capabilities.py')
-rw-r--r-- | synapse/rest/client/capabilities.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/synapse/rest/client/capabilities.py b/synapse/rest/client/capabilities.py index b80fdd3712..4237071c61 100644 --- a/synapse/rest/client/capabilities.py +++ b/synapse/rest/client/capabilities.py @@ -72,9 +72,6 @@ class CapabilitiesRestServlet(RestServlet): "org.matrix.msc3244.room_capabilities" ] = MSC3244_CAPABILITIES - if self.config.experimental.msc3440_enabled: - response["capabilities"]["io.element.thread"] = {"enabled": True} - if self.config.experimental.msc3720_enabled: response["capabilities"]["org.matrix.msc3720.account_status"] = { "enabled": True, |