diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-05-26 14:35:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-26 14:35:16 -0400 |
commit | f42e4c4eb9b5b84bd1da80a4f3938c1c06305364 (patch) | |
tree | ee34d0dc15434b05df6d75f6847d30a0281630c3 /synapse/rest | |
parent | Fix GitHub Actions lint for newsfragments (#10069) (diff) | |
download | synapse-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.py | 4 |
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: |