Alaa Aqeel
Results
2
comments of
Alaa Aqeel
i tried this **to make `reset_password` for restful API** and it work ``` def reset_password(token): expired, invalid, user = reset_password_token_status(token) if invalid: if request.is_json: return _render_json_msg('invalid_token','INVALID_RESET_PASSWORD_TOKEN') , 400 do_flash(*get_message('INVALID_RESET_PASSWORD_TOKEN')) if...
@jwag956 **nice**