-
Notifications
You must be signed in to change notification settings - Fork 9.8k
[firebase_auth] Adding support for FirebaseUser.unlink(providerId) #703
Conversation
ko2ic
commented
Aug 3, 2018
•
edited
Loading
edited
- Unlink an auth provider from a user account
9848f11
to
27dcdd9
Compare
The difference from #775 is whether the method is divided for each Provider or whether to supply ProviderId as argument. |
@ko2ic Thanks for this PR, please rebase onto master so that conflicts are resolved. Also could you limit your changes to the unlink feature? If you want to do other edits please submit those in another PR. |
Of course. I will do so. |
69cd142
to
35da956
Compare
421e62a
to
5ada715
Compare
ecd1c4a
to
bb14b90
Compare
bb14b90
to
9b1eb70
Compare
@@ -227,6 +237,10 @@ - (void)handleMethodCall:(FlutterMethodCall *)call result:(FlutterResult)result | |||
completion:^(NSError *error) { | |||
[self sendResult:result forUser:nil error:error]; | |||
}]; | |||
[[FIRAuth auth].currentUser updatePassword:password |
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.
Could we handle this in another PR. Removing this and only handling unlink in this PR. Thanks.
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.
I fixed it.
Could you review again?
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.
You may not know the change point with force push.
The changed point is two.
- I fixed it to handle only
unlink
. - [FIRAuth auth] -> [self getAuth:call.arguments] in
unlink
.
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.
@kroikie : I want to use this unlink function. Could you review this pull request as soon as possible?
5f5021a
to
72f809b
Compare
72f809b
to
85e9f76
Compare
bf33539
to
a5d42fa
Compare
299aeaf
to
021f770
Compare
@kroikie Conflict resolved. |
@ko2ic please bump version to |
* Unlink an auth provider from a user account
a09ebb0
to
cdde055
Compare
@kroikie I did it. |