mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-22 12:41:10 +10:00
14 lines
391 B
TypeScript
14 lines
391 B
TypeScript
import aclManager from "~/server/internal/acls";
|
|
import libraryManager from "~/server/internal/library";
|
|
|
|
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 libraryManager.deleteGame(gameId);
|
|
|
|
return {};
|
|
});
|