mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-13 08:12:40 +10:00
18 lines
419 B
TypeScript
18 lines
419 B
TypeScript
import aclManager from "~~/server/internal/acls";
|
|
import prisma from "~~/server/internal/db/database";
|
|
|
|
export default defineEventHandler(async (h3) => {
|
|
const allowed = await aclManager.allowSystemACL(h3, ["game:delete"]);
|
|
if (!allowed) throw createError({ statusCode: 403 });
|
|
|
|
const gameId = getRouterParam(h3, "id")!;
|
|
|
|
await prisma.game.delete({
|
|
where: {
|
|
id: gameId,
|
|
},
|
|
});
|
|
|
|
return {};
|
|
});
|