-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Improve reset password API #6830
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: alpha
Are you sure you want to change the base?
Improve reset password API #6830
Conversation
It gets automatically linked to the issue once you mention it here. |
|
Linked issue #6817
Improving error codes on resetting password functionality, this implementation will require adding new error codes to the DefinitelyTyped like:
ParseError.USERNAME_NOT_FOUND = 603;
ParseError.RESET_PASSWORD_ERROR = 604;
ParseError.RESET_LINK_EXPIRED = 605;
ParseError.PASSWORD_POLICY_USERNAME = 606;
ParseError.PASSWORD_POLICY_REPEAT = 607;
ParseError.PASSWORD_POLICY_NOT_MEET = 608;
IMPORTANT Unit tests have been created using new error codes which will cause failures until new codes are implemented, please feel free to contribute adding them in order to promote this PR.