summary refs log tree commit diff
path: root/synapse/api
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2021-05-26 14:35:16 -0400
committerGitHub <noreply@github.com>2021-05-26 14:35:16 -0400
commitf42e4c4eb9b5b84bd1da80a4f3938c1c06305364 (patch)
treeee34d0dc15434b05df6d75f6847d30a0281630c3 /synapse/api
parentFix GitHub Actions lint for newsfragments (#10069) (diff)
downloadsynapse-f42e4c4eb9b5b84bd1da80a4f3938c1c06305364.tar.xz
Remove the experimental spaces enabled flag. (#10063)
In lieu of just always enabling the unstable spaces endpoint and
unstable room version.
Diffstat (limited to 'synapse/api')
-rw-r--r--synapse/api/room_versions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/api/room_versions.py b/synapse/api/room_versions.py
index c9f9596ada..373a4669d0 100644
--- a/synapse/api/room_versions.py
+++ b/synapse/api/room_versions.py
@@ -181,6 +181,6 @@ KNOWN_ROOM_VERSIONS = {
         RoomVersions.V5,
         RoomVersions.V6,
         RoomVersions.MSC2176,
+        RoomVersions.MSC3083,
     )
-    # Note that we do not include MSC3083 here unless it is enabled in the config.
 }  # type: Dict[str, RoomVersion]