mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 08:13:56 +10:00
29 lines
505 B
TypeScript
29 lines
505 B
TypeScript
import { prisma } from '@documenso/prisma';
|
|
|
|
export type UpdateProfileOptions = {
|
|
userId: number;
|
|
name: string;
|
|
signature: string;
|
|
};
|
|
|
|
export const updateProfile = async ({ userId, name, signature }: UpdateProfileOptions) => {
|
|
// Existence check
|
|
await prisma.user.findFirstOrThrow({
|
|
where: {
|
|
id: userId,
|
|
},
|
|
});
|
|
|
|
const updatedUser = await prisma.user.update({
|
|
where: {
|
|
id: userId,
|
|
},
|
|
data: {
|
|
name,
|
|
signature,
|
|
},
|
|
});
|
|
|
|
return updatedUser;
|
|
};
|