mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-21 04:01:10 +10:00
22 lines
482 B
TypeScript
22 lines
482 B
TypeScript
import aclManager from "~/server/internal/acls";
|
|
import prisma from "~/server/internal/db/database";
|
|
|
|
/**
|
|
* Delete a game from this instance
|
|
* @param id Game ID
|
|
*/
|
|
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 {};
|
|
});
|