From 52e6868f5095d16bd3c72f73d797b208ebe2d1fc Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Tue, 3 Sep 2019 15:03:41 -0600 Subject: [PATCH 1/2] Remove bind_* params on /register as per MSC2140 See https://github.com/matrix-org/matrix-doc/pull/2140 See https://github.com/matrix-org/matrix-doc/issues/2253 --- api/client-server/registration.yaml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/api/client-server/registration.yaml b/api/client-server/registration.yaml index 71177d0c..8bb9a027 100644 --- a/api/client-server/registration.yaml +++ b/api/client-server/registration.yaml @@ -95,18 +95,6 @@ paths: should be authenticated, but is instead used to authenticate the ``register`` call itself. "$ref": "definitions/auth_data.yaml" - bind_email: - type: boolean - description: |- - If true, the server binds the email used for authentication to - the Matrix ID with the identity server. - example: false - bind_msisdn: - type: boolean - description: |- - If true, the server binds the phone number used for authentication - to the Matrix ID with the identity server. - example: false username: type: string description: |- From caf46db6e797cddffd205b1d81d4b1eb3a3c79e9 Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Tue, 3 Sep 2019 15:04:58 -0600 Subject: [PATCH 2/2] Changelog --- changelogs/client_server/newsfragments/2279.feature | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelogs/client_server/newsfragments/2279.feature diff --git a/changelogs/client_server/newsfragments/2279.feature b/changelogs/client_server/newsfragments/2279.feature new file mode 100644 index 00000000..a1fdf168 --- /dev/null +++ b/changelogs/client_server/newsfragments/2279.feature @@ -0,0 +1 @@ +Remove ``bind_msisdn`` and ``bind_email`` from ``/register`` now that the identity server's bind endpoint requires authentication.