This repository was archived by the owner on Apr 26, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
synapse/rest/client/v2_alpha Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1+ Fix bug introduced on v1.15.0 which meant that some 3PID management endpoints were not accessible on the correct URL.
Original file line number Diff line number Diff line change @@ -682,7 +682,7 @@ async def on_POST(self, request):
682682
683683
684684class ThreepidAddRestServlet (RestServlet ):
685- PATTERNS = client_patterns ("/account/3pid/add$" , releases = (), unstable = True )
685+ PATTERNS = client_patterns ("/account/3pid/add$" )
686686
687687 def __init__ (self , hs ):
688688 super (ThreepidAddRestServlet , self ).__init__ ()
@@ -733,7 +733,7 @@ async def on_POST(self, request):
733733
734734
735735class ThreepidBindRestServlet (RestServlet ):
736- PATTERNS = client_patterns ("/account/3pid/bind$" , releases = (), unstable = True )
736+ PATTERNS = client_patterns ("/account/3pid/bind$" )
737737
738738 def __init__ (self , hs ):
739739 super (ThreepidBindRestServlet , self ).__init__ ()
@@ -762,7 +762,7 @@ async def on_POST(self, request):
762762
763763
764764class ThreepidUnbindRestServlet (RestServlet ):
765- PATTERNS = client_patterns ("/account/3pid/unbind$" , releases = (), unstable = True )
765+ PATTERNS = client_patterns ("/account/3pid/unbind$" )
766766
767767 def __init__ (self , hs ):
768768 super (ThreepidUnbindRestServlet , self ).__init__ ()
You can’t perform that action at this time.
0 commit comments