Compare commits

...

4 Commits

Author SHA1 Message Date
J. Ryan Stinnett
7b65f0539e Update old news 2019-09-19 14:43:21 +01:00
J. Ryan Stinnett
aade649f1e Remove from r0 as well 2019-09-19 14:31:58 +01:00
J. Ryan Stinnett
ea23ce90c2 News 2019-09-19 14:18:48 +01:00
J. Ryan Stinnett
20fdf391a6 Use unstable prefix for 3PID unbind API 2019-09-19 14:15:46 +01:00
3 changed files with 3 additions and 2 deletions

View File

@@ -1 +1 @@
Add POST /_matrix/client/r0/account/3pid/unbind endpoint from MSC2140 for unbinding a 3PID from an identity server without removing it from the homeserver user account.
Add POST /_matrix/client/unstable/account/3pid/unbind endpoint from MSC2140 for unbinding a 3PID from an identity server without removing it from the homeserver user account.

1
changelog.d/6062.bugfix Normal file
View File

@@ -0,0 +1 @@
Add POST /_matrix/client/unstable/account/3pid/unbind endpoint from MSC2140 for unbinding a 3PID from an identity server without removing it from the homeserver user account.

View File

@@ -529,7 +529,7 @@ class ThreepidRestServlet(RestServlet):
class ThreepidUnbindRestServlet(RestServlet):
PATTERNS = client_patterns("/account/3pid/unbind$")
PATTERNS = client_patterns("/account/3pid/unbind$", releases=(), unstable=True)
def __init__(self, hs):
super(ThreepidUnbindRestServlet, self).__init__()