diff options
author | Hugh Nimmo-Smith <hughns@element.io> | 2023-05-25 13:31:04 +0100 |
---|---|---|
committer | Hugh Nimmo-Smith <hughns@element.io> | 2023-05-25 13:31:04 +0100 |
commit | 1d41bf1f78bf93a973c0e65b7262701b6f52207a (patch) | |
tree | bc44f67a14d621cece13a7429eaf868e30ec9973 | |
parent | Reinstate support for unstable revision 0 of MSC3882 (diff) | |
download | synapse-1d41bf1f78bf93a973c0e65b7262701b6f52207a.tar.xz |
Cleaner diff
-rw-r--r-- | synapse/rest/client/versions.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/rest/client/versions.py b/synapse/rest/client/versions.py index c9f062ae79..547bf34df1 100644 --- a/synapse/rest/client/versions.py +++ b/synapse/rest/client/versions.py @@ -113,10 +113,10 @@ class VersionsRestServlet(RestServlet): "fi.mau.msc2815": self.config.experimental.msc2815_enabled, # Adds a ping endpoint for appservices to check HS->AS connection "fi.mau.msc2659.stable": True, # TODO: remove when "v1.7" is added above - # Adds support for remotely enabling/disabling pushers, as per MSC3881 - "org.matrix.msc3881": self.config.experimental.msc3881_enabled, # TODO: this is no longer needed once unstable MSC3882 does not need to be supported: "org.matrix.msc3882": self.config.auth.login_via_existing_enabled, + # Adds support for remotely enabling/disabling pushers, as per MSC3881 + "org.matrix.msc3881": self.config.experimental.msc3881_enabled, # Adds support for filtering /messages by event relation. "org.matrix.msc3874": self.config.experimental.msc3874_enabled, # Adds support for simple HTTP rendezvous as per MSC3886 |