almst complete admin ui and initial store designs

This commit is contained in:
DecDuck
2024-10-11 22:45:02 +11:00
parent 46c8f0c48a
commit 27070b6a4c
21 changed files with 734 additions and 202 deletions

View File

@ -0,0 +1,25 @@
import prisma from "~/server/internal/db/database";
export default defineEventHandler(async (h3) => {
const userId = await h3.context.session.getUserId(h3);
if (!userId) throw createError({ statusCode: 403 });
const gameId = getRouterParam(h3, "id");
if (!gameId)
throw createError({
statusCode: 400,
statusMessage: "Missing gameId in route params (somehow...?)",
});
const game = await prisma.game.findUnique({
where: { id: gameId },
include: {
versions: true,
},
});
if (!game)
throw createError({ statusCode: 404, statusMessage: "Game not found" });
return game;
});