added dockerfile for docs

This commit is contained in:
PxlLoewe
2025-06-24 20:07:54 -07:00
parent 0607b93ade
commit f8389383f8
8 changed files with 105 additions and 31 deletions

View File

@@ -18,3 +18,13 @@ export const editPenalty = async (id: number, data: Prisma.PenaltyUpdateInput) =
data,
});
};
export const editPenaltys = async (
data: Prisma.PenaltyUpdateInput,
where: Prisma.PenaltyWhereInput,
) => {
return await prisma.penalty.updateMany({
where,
data,
});
};