mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-13 00:02:37 +10:00
21 lines
643 B
TypeScript
21 lines
643 B
TypeScript
import { defineClientEventHandler } from "~/server/internal/clients/event-handler";
|
|
import userLibraryManager from "~/server/internal/userlibrary";
|
|
|
|
export default defineClientEventHandler(async (h3, { fetchUser }) => {
|
|
const user = await fetchUser();
|
|
|
|
const id = getRouterParam(h3, "id");
|
|
if (!id)
|
|
throw createError({
|
|
statusCode: 400,
|
|
statusMessage: "ID required in route params",
|
|
});
|
|
|
|
const body = await readBody(h3);
|
|
const gameId = body.id;
|
|
if (!gameId)
|
|
throw createError({ statusCode: 400, statusMessage: "Game ID required" });
|
|
|
|
return await userLibraryManager.collectionAdd(gameId, id, user.id);
|
|
});
|