Add debug for email reset
This commit is contained in:
parent
d140f93d25
commit
37ad36da31
@ -105,6 +105,7 @@ def _reset():
|
|||||||
user = _user
|
user = _user
|
||||||
break
|
break
|
||||||
if not user: return jsonify({'error': 'The user account does not exist.'}), 400
|
if not user: return jsonify({'error': 'The user account does not exist.'}), 400
|
||||||
|
print(user.get_email(),request.form.get('email'),user.get_email() == request.form.get('email'))
|
||||||
if not user.get_email() == request.form.get('email'): return jsonify({'error': 'The email address does not match the user account.'}), 400
|
if not user.get_email() == request.form.get('email'): return jsonify({'error': 'The email address does not match the user account.'}), 400
|
||||||
return user.reset_password()
|
return user.reset_password()
|
||||||
return send_errors_to_client(form=form)
|
return send_errors_to_client(form=form)
|
||||||
|
Loading…
Reference in New Issue
Block a user