File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
firebase-auth/src/iosMain/kotlin/dev/gitlive/firebase/auth Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -18,11 +18,14 @@ actual object EmailAuthProvider {
18
18
actual fun credential (
19
19
email : String ,
20
20
password : String
21
- ): AuthCredential = AuthCredential (FIREmailAuthProvider .credentialWithEmail(email = email, password = password))
21
+ ): AuthCredential =
22
+ AuthCredential (FIREmailAuthProvider .credentialWithEmail(email = email, password = password))
22
23
23
- actual fun getCredentialWithLink (email : String , emailLink : String ): AuthCredential {
24
- return AuthCredential (FIREmailAuthProvider .credentialWithEmail(email = email, link = emailLink))
25
- }
24
+ actual fun getCredentialWithLink (
25
+ email : String ,
26
+ emailLink : String
27
+ ): AuthCredential =
28
+ AuthCredential (FIREmailAuthProvider .credentialWithEmail(email = email, link = emailLink))
26
29
}
27
30
28
31
actual object FacebookAuthProvider {
You can’t perform that action at this time.
0 commit comments