diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-02-19 10:40:27 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-19 10:40:27 +0000 |
commit | 880aaac1d82695b1a89f22f1f86c7f295ca205e0 (patch) | |
tree | c6792fce676c5773434d9446a911e06e02f829e1 /synapse/rest/client/versions.py | |
parent | Tiny optimisation for _get_handler_for_request (#6950) (diff) | |
download | synapse-880aaac1d82695b1a89f22f1f86c7f295ca205e0.tar.xz |
Move MSC2432 stuff onto unstable prefix (#6948)
it's not in the spec yet, so needs to be unstable. Also add a feature flag for it. Also add a test for admin users.
Diffstat (limited to 'synapse/rest/client/versions.py')
-rw-r--r-- | synapse/rest/client/versions.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/rest/client/versions.py b/synapse/rest/client/versions.py index 3eeb3607f4..d90a6a890b 100644 --- a/synapse/rest/client/versions.py +++ b/synapse/rest/client/versions.py @@ -72,6 +72,8 @@ class VersionsRestServlet(RestServlet): "org.matrix.label_based_filtering": True, # Implements support for cross signing as described in MSC1756 "org.matrix.e2e_cross_signing": True, + # Implements additional endpoints as described in MSC2432 + "org.matrix.msc2432": True, }, }, ) |