feat: send email to user on successful password reset

This commit is contained in:
Ephraim Atta-Duncan
2023-09-18 14:31:04 +00:00
committed by Mythie
parent 84bc6eb4f3
commit dabeead57f
6 changed files with 57 additions and 15 deletions

View File

@ -3,6 +3,7 @@ import { compare, hash } from 'bcrypt';
import { prisma } from '@documenso/prisma';
import { SALT_ROUNDS } from '../../constants/auth';
import { sendResetPassword } from '../auth/send-reset-password';
export type ResetPasswordOptions = {
token: string;
@ -61,6 +62,6 @@ export const resetPassword = async ({ token, password }: ResetPasswordOptions) =
throw new Error('Unable to update password');
}
// await sendResetPasswordSuccessMail(foundToken.User);
await sendResetPassword({ userId: foundToken.userId });
return transactions;
};