diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-05-26 07:10:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-26 07:10:28 -0400 |
commit | 1885ee011395f9c1f121f8045ac6d47a74c4cc24 (patch) | |
tree | 360ee79ca623b32883d1b05cd43c6466e207a8f6 /synapse/federation/transport | |
parent | Avoid attempting to delete push actions for remote users. (#12879) (diff) | |
download | synapse-1885ee011395f9c1f121f8045ac6d47a74c4cc24.tar.xz |
Remove unstable APIs for /hierarchy. (#12851)
Removes the unstable endpoint as well as a duplicated field which was modified during stabilization.
Diffstat (limited to 'synapse/federation/transport')
-rw-r--r-- | synapse/federation/transport/server/federation.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/synapse/federation/transport/server/federation.py b/synapse/federation/transport/server/federation.py index 6fbc7b5f15..57e8fb21b0 100644 --- a/synapse/federation/transport/server/federation.py +++ b/synapse/federation/transport/server/federation.py @@ -650,10 +650,6 @@ class FederationRoomHierarchyServlet(BaseFederationServlet): ) -class FederationRoomHierarchyUnstableServlet(FederationRoomHierarchyServlet): - PREFIX = FEDERATION_UNSTABLE_PREFIX + "/org.matrix.msc2946" - - class RoomComplexityServlet(BaseFederationServlet): """ Indicates to other servers how complex (and therefore likely @@ -752,7 +748,6 @@ FEDERATION_SERVLET_CLASSES: Tuple[Type[BaseFederationServlet], ...] = ( FederationVersionServlet, RoomComplexityServlet, FederationRoomHierarchyServlet, - FederationRoomHierarchyUnstableServlet, FederationV1SendKnockServlet, FederationMakeKnockServlet, FederationAccountStatusServlet, |