-
Notifications
You must be signed in to change notification settings - Fork 4k
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
feat(firebase_auth_web): add support for confirmPasswordReset
#2559
Conversation
3858dc9
to
82e1bcf
Compare
@slightfoot any chance of |
82e1bcf
to
4a78d5a
Compare
@domesticmouse hey Brett. Long time. Done and pushed. Sorry mate thought it was formatted. |
Thanks Simon, and yeah, it’s been way too long! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks!
Will get this merged and published this week, fix for CI publishable step is landing in another PR.
confirmPasswordReset
This has now been published. Thanks |
|
||
Future<void> confirmPasswordReset( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing @override
?
@@ -357,4 +357,10 @@ class FirebaseAuthWeb extends FirebaseAuthPlatform { | |||
// See https://github.com/flutter/flutter/issues/46021 | |||
throw UnimplementedError('verifyPhoneNumber'); | |||
} | |||
|
|||
Future<void> confirmPasswordReset( | |||
String app, String oobCode, String newPassword) async { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adding a trailing comma after newPassword
may yield a more pleasing formatting (like this one).
Description
This adds the
confirmPasswordReset
implementation tofirebase_auth_web
. Currently missing.Related Issues
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?
/cc @hterkelsen
/cc @bparrishMines