mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-17 02:01:11 +10:00
22 lines
692 B
TypeScript
22 lines
692 B
TypeScript
import aclManager from "~/server/internal/acls";
|
|
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);
|
|
});
|