Bug: Redirect user to set new password screen (#772)

This commit is contained in:
Pranav Raj S
2020-04-27 15:15:05 +05:30
committed by GitHub
parent 6770126de0
commit fde4f9271b

View File

@@ -22,7 +22,7 @@ export default {
Auth.verifyPasswordToken({
confirmationToken: this.confirmationToken
}).then(res => {
window.location = '/';
window.location = res.data.redirect_url;
}).catch(res => {
window.location = '/';
});