-
Notifications
You must be signed in to change notification settings - Fork 4k
[firebase_auth] Confirm password reset #1778
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
[firebase_auth] Confirm password reset #1778
Conversation
@lanmonster I've got an implementation of
Future<void> confirmPasswordReset(
String app,
String code,
String newPassword,
) {
final firebase.Auth auth = _getAuth(app);
return auth.confirmPasswordReset(code, newPassword);
} |
|
* Add macos to CI * Add lint script
…rebase#1780) * add 'app' to signature of FirebaseAuthPlatform.confirmPasswordReset * Update packages/firebase_auth/firebase_auth_platform_interface/CHANGELOG.md Co-authored-by: Collin Jackson <[email protected]>
@collinjackson I updated the PR |
Description
This PR gives the ability to confirm password reset in order to control the entire "forgot password" flow from within an app.
Related Issues
#1739
Checklist
Before you create this PR confirm that it meets all requirements listed below by checking the relevant checkboxes (
[x]
). This will ensure a smooth and quick review process.///
).flutter analyze
) does not report any problems on my PR.Breaking Change
Does your PR require plugin users to manually update their apps to accommodate your change?