summary refs log tree commit diff
path: root/synapse/rest/client/v2_alpha/password.py
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2015-04-15 15:50:38 +0100
committerDavid Baker <dave@matrix.org>2015-04-15 15:50:38 +0100
commita19b73990962ff3bfe8b2cae59446bbe7f93ec5c (patch)
treeb8e7c10ad830b0b1897f66480013bb950a0e41dc /synapse/rest/client/v2_alpha/password.py
parentAdd app service auth back in to v2 register (diff)
downloadsynapse-a19b73990962ff3bfe8b2cae59446bbe7f93ec5c.tar.xz
Regstration with email in v2
Diffstat (limited to 'synapse/rest/client/v2_alpha/password.py')
-rw-r--r--synapse/rest/client/v2_alpha/password.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/synapse/rest/client/v2_alpha/password.py b/synapse/rest/client/v2_alpha/password.py

index 85954c71cd..cb0c8cfb55 100644 --- a/synapse/rest/client/v2_alpha/password.py +++ b/synapse/rest/client/v2_alpha/password.py
@@ -41,7 +41,7 @@ class PasswordRestServlet(RestServlet): def on_POST(self, request): body = parse_json_dict_from_request(request) - authed, result = yield self.auth_handler.check_auth([ + authed, result, params = yield self.auth_handler.check_auth([ [LoginType.PASSWORD] ], body) @@ -61,9 +61,9 @@ class PasswordRestServlet(RestServlet): user_id = auth_user.to_string() - if 'new_password' not in body: + if 'new_password' not in params: raise SynapseError(400, "", Codes.MISSING_PARAM) - new_password = body['new_password'] + new_password = params['new_password'] yield self.login_handler.set_password( user_id, new_password, client.token_id