mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-15 09:11:21 +10:00
12 lines
351 B
TypeScript
12 lines
351 B
TypeScript
import aclManager from "~~/server/internal/acls";
|
|
import prisma from "~~/server/internal/db/database";
|
|
|
|
export default defineEventHandler(async (h3) => {
|
|
const allowed = await aclManager.getUserACL(h3, ["settings:read"]);
|
|
if (!allowed) throw createError({ statusCode: 403 });
|
|
|
|
const game = await prisma.game.findFirst();
|
|
|
|
return { game };
|
|
});
|