()
| 19 | code: string; |
| 20 | verificationId: string; |
| 21 | constructor() { |
| 22 | super(); |
| 23 | |
| 24 | firebase() |
| 25 | .auth() |
| 26 | .addAuthStateChangeListener((user) => { |
| 27 | this._setCurrentUser(user); |
| 28 | }); |
| 29 | } |
| 30 | |
| 31 | async linkGithub() { |
| 32 | if (!this.user) { |
nothing calls this directly
no test coverage detected