summary refs log tree commit diff
path: root/synapse/rest
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/rest
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/rest')
-rw-r--r--synapse/rest/client/v1/room.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/synapse/rest/client/v1/room.py b/synapse/rest/client/v1/room.py
index 51813cccbe..d6d55893af 100644
--- a/synapse/rest/client/v1/room.py
+++ b/synapse/rest/client/v1/room.py
@@ -1060,9 +1060,7 @@ def register_servlets(hs: "HomeServer", http_server, is_worker=False):
     RoomRedactEventRestServlet(hs).register(http_server)
     RoomTypingRestServlet(hs).register(http_server)
     RoomEventContextServlet(hs).register(http_server)
-
-    if hs.config.experimental.spaces_enabled:
-        RoomSpaceSummaryRestServlet(hs).register(http_server)
+    RoomSpaceSummaryRestServlet(hs).register(http_server)
 
     # Some servlets only get registered for the main process.
     if not is_worker: