В настоящее время я пытаюсь реализовать ссылку сброса для человека, который забывает свой пароль. Я продолжаю получать сообщение об ошибке, в котором говорится, что sendCustomPasswordResetEmail не определен. Я довольно новичок в Firebase SDK, поэтому любые предложения будут с благодарностью. Вот моя функция:
exports.resetPassword = (req, res) => {
const userEmail = req.body.email
admin
.auth()
.generatePasswordResetLink(userEmail)
.then(link => {
// Construct password reset email template, embed the link and send
// using custom SMTP server.
return sendCustomPasswordResetEmail(userEmail, link)
})
.catch(error => {
console.log(error)
})
}