mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-12 03:00:05 -04:00
Enable 3PID add/bind/unbind endpoints on r0 routes
This commit is contained in:
parent
3b3f327a0d
commit
6d5985e1f2
2 changed files with 4 additions and 3 deletions
|
@ -682,7 +682,7 @@ class ThreepidRestServlet(RestServlet):
|
|||
|
||||
|
||||
class ThreepidAddRestServlet(RestServlet):
|
||||
PATTERNS = client_patterns("/account/3pid/add$", releases=(), unstable=True)
|
||||
PATTERNS = client_patterns("/account/3pid/add$")
|
||||
|
||||
def __init__(self, hs):
|
||||
super(ThreepidAddRestServlet, self).__init__()
|
||||
|
@ -733,7 +733,7 @@ class ThreepidAddRestServlet(RestServlet):
|
|||
|
||||
|
||||
class ThreepidBindRestServlet(RestServlet):
|
||||
PATTERNS = client_patterns("/account/3pid/bind$", releases=(), unstable=True)
|
||||
PATTERNS = client_patterns("/account/3pid/bind$")
|
||||
|
||||
def __init__(self, hs):
|
||||
super(ThreepidBindRestServlet, self).__init__()
|
||||
|
@ -762,7 +762,7 @@ class ThreepidBindRestServlet(RestServlet):
|
|||
|
||||
|
||||
class ThreepidUnbindRestServlet(RestServlet):
|
||||
PATTERNS = client_patterns("/account/3pid/unbind$", releases=(), unstable=True)
|
||||
PATTERNS = client_patterns("/account/3pid/unbind$")
|
||||
|
||||
def __init__(self, hs):
|
||||
super(ThreepidUnbindRestServlet, self).__init__()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue