mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 08:13:56 +10:00
33 lines
633 B
TypeScript
33 lines
633 B
TypeScript
import { hash } from 'bcrypt';
|
|
|
|
import { prisma } from '@documenso/prisma';
|
|
|
|
import { SALT_ROUNDS } from '../../constants/auth';
|
|
|
|
export type UpdatePasswordOptions = {
|
|
userId: number;
|
|
password: string;
|
|
};
|
|
|
|
export const updatePassword = async ({ userId, password }: UpdatePasswordOptions) => {
|
|
// Existence check
|
|
await prisma.user.findFirstOrThrow({
|
|
where: {
|
|
id: userId,
|
|
},
|
|
});
|
|
|
|
const hashedPassword = await hash(password, SALT_ROUNDS);
|
|
|
|
const updatedUser = await prisma.user.update({
|
|
where: {
|
|
id: userId,
|
|
},
|
|
data: {
|
|
password: hashedPassword,
|
|
},
|
|
});
|
|
|
|
return updatedUser;
|
|
};
|