mirror of
https://github.com/documenso/documenso
synced 2026-04-21 21:37:18 +00:00
27 lines
498 B
TypeScript
27 lines
498 B
TypeScript
import { AppError } from '@documenso/lib/errors/app-error';
|
|
import { prisma } from '@documenso/prisma';
|
|
|
|
export type EnableUserOptions = {
|
|
id: number;
|
|
};
|
|
|
|
export const enableUser = async ({ id }: EnableUserOptions) => {
|
|
const user = await prisma.user.findFirst({
|
|
where: {
|
|
id,
|
|
},
|
|
});
|
|
|
|
if (!user) {
|
|
throw new AppError('There was an error enabling the user');
|
|
}
|
|
|
|
await prisma.user.update({
|
|
where: {
|
|
id,
|
|
},
|
|
data: {
|
|
disabled: false,
|
|
},
|
|
});
|
|
};
|