diff options
author | J. Ryan Stinnett <jryans@gmail.com> | 2019-09-19 22:28:30 +0100 |
---|---|---|
committer | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-09-19 22:28:29 +0100 |
commit | 36015d68efccd2520ac0a569a5f8714544f6568c (patch) | |
tree | 6ac98f014bb091e853d548f28f0a26b719dc2a0f /synapse/rest/client | |
parent | Update the upgrade notes (#6050) (diff) | |
download | synapse-36015d68efccd2520ac0a569a5f8714544f6568c.tar.xz |
Use unstable prefix for 3PID unbind API (#6062)
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 afaaeeacdd..ce1487dbc5 100644 --- a/synapse/rest/client/v2_alpha/account.py +++ b/synapse/rest/client/v2_alpha/account.py @@ -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__() |