N-FIN-75: fix category can not be deleted (#82)

Resolves #75
This commit is contained in:
Markus Thielker 2024-12-23 19:46:05 +01:00 committed by GitHub
commit f24d4e4a38
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -38,15 +38,25 @@ export default async function categoryDelete(id: number): Promise<ActionResponse
};
}
// delete category
try {
await prisma.category.delete({
await prisma.$transaction(async (tx) => {
// update related payments
await tx.payment.updateMany({
where: {categoryId: category.id},
data: {categoryId: null},
});
// delete the category
await tx.category.delete({
where: {
id: category.id,
userId: user.sub,
},
},
);
});
});
} catch (e) {
return {
type: 'error',