diff options
author | Erik Johnston <erik@matrix.org> | 2019-04-01 15:21:11 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2019-04-01 15:25:19 +0100 |
commit | 862d6e5ba5de58a6e1a9a5930d267c7cec4e3ab5 (patch) | |
tree | 9fb05328455bf071e78adfd9c1045c830bd5a58b /synapse/rest/client | |
parent | Grandfather in existing user threepids (diff) | |
download | synapse-862d6e5ba5de58a6e1a9a5930d267c7cec4e3ab5.tar.xz |
Add unbind API to /r0 as it is now stabalised
Diffstat (limited to 'synapse/rest/client')
-rw-r--r-- | synapse/rest/client/v2_alpha/account.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/v2_alpha/account.py b/synapse/rest/client/v2_alpha/account.py index 50a434a507..ee069179f0 100644 --- a/synapse/rest/client/v2_alpha/account.py +++ b/synapse/rest/client/v2_alpha/account.py @@ -364,7 +364,7 @@ class ThreepidRestServlet(RestServlet): class ThreepidDeleteRestServlet(RestServlet): - PATTERNS = client_v2_patterns("/account/3pid/delete$", releases=()) + PATTERNS = client_v2_patterns("/account/3pid/delete$") def __init__(self, hs): super(ThreepidDeleteRestServlet, self).__init__() |