(provider)
| 74 | } |
| 75 | |
| 76 | private socialSignIn(provider) { |
| 77 | return this.afAuth.auth.signInWithPopup(provider) |
| 78 | .then((credential) => { |
| 79 | this.authState = credential.user |
| 80 | this.updateUserData() |
| 81 | }) |
| 82 | .catch(error => console.log(error)); |
| 83 | } |
| 84 | |
| 85 | |
| 86 | //// Anonymous Auth //// |
no test coverage detected