From 9a87bb3af68216b53ee8f89d6604c715c7b85b2d Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Thu, 27 Apr 2017 10:55:03 -0400 Subject: Creating common token store and moving email invites and verification to it (#6213) --- webapp/actions/user_actions.jsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'webapp/actions') diff --git a/webapp/actions/user_actions.jsx b/webapp/actions/user_actions.jsx index c4e0f4fc6..aa43dafda 100644 --- a/webapp/actions/user_actions.jsx +++ b/webapp/actions/user_actions.jsx @@ -655,10 +655,9 @@ export function updatePassword(userId, currentPassword, newPassword, success, er ); } -export function verifyEmail(uid, hid, success, error) { +export function verifyEmail(token, success, error) { Client.verifyEmail( - uid, - hid, + token, (data) => { if (success) { success(data); @@ -672,9 +671,9 @@ export function verifyEmail(uid, hid, success, error) { ); } -export function resetPassword(code, password, success, error) { +export function resetPassword(token, password, success, error) { Client.resetPassword( - code, + token, password, () => { browserHistory.push('/login?extra=' + ActionTypes.PASSWORD_CHANGE); -- cgit v1.2.3-1-g7c22