* Sends an email verification to the user.
()
| 106 | * Sends an email verification to the user. |
| 107 | */ |
| 108 | function sendVerificationEmailToUser() { |
| 109 | sendEmailVerification(auth.currentUser!).then(function () { |
| 110 | // Email Verification sent! |
| 111 | alert('Email Verification Sent!'); |
| 112 | }); |
| 113 | } |
| 114 | |
| 115 | function sendPasswordReset() { |
| 116 | const email = emailInput.value; |
nothing calls this directly
no outgoing calls
no test coverage detected