mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-13 00:02:37 +10:00
16 lines
349 B
TypeScript
16 lines
349 B
TypeScript
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 games = await prisma.game.findMany({
|
|
orderBy: {
|
|
mReleased: "desc",
|
|
},
|
|
take: 12,
|
|
});
|
|
|
|
return games;
|
|
});
|