diff options
author | Olivier Wilkinson (reivilibre) <oliverw@matrix.org> | 2022-01-07 14:22:13 +0000 |
---|---|---|
committer | Olivier Wilkinson (reivilibre) <oliverw@matrix.org> | 2022-01-07 14:22:13 +0000 |
commit | 6a04767439ec15123c1aa7cac614155652d71c6a (patch) | |
tree | fc35840da859551bbf8500e6ce5b52ddcf4476a8 /synapse/rest | |
parent | Bundle aggregations outside of the serialization method. (#11612) (diff) | |
parent | Move changelog entry for drop of support to 'Deprecations and Removals' (diff) | |
download | synapse-6a04767439ec15123c1aa7cac614155652d71c6a.tar.xz |
Merge branch 'release-v1.50' into develop
Diffstat (limited to 'synapse/rest')
-rw-r--r-- | synapse/rest/client/capabilities.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/rest/client/capabilities.py b/synapse/rest/client/capabilities.py index 2a3e24ae7e..5c0e3a5680 100644 --- a/synapse/rest/client/capabilities.py +++ b/synapse/rest/client/capabilities.py @@ -73,6 +73,9 @@ class CapabilitiesRestServlet(RestServlet): "enabled": self.config.registration.enable_3pid_changes } + if self.config.experimental.msc3440_enabled: + response["capabilities"]["io.element.thread"] = {"enabled": True} + return 200, response |