feat: client collection routes

This commit is contained in:
DecDuck
2025-03-10 12:28:59 +11:00
parent 1eede0f035
commit 133503582a
9 changed files with 186 additions and 0 deletions

View File

@ -0,0 +1,17 @@
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 body = await readBody(h3);
const name = body.name;
if (!name)
throw createError({ statusCode: 400, statusMessage: "Requires name" });
// Create the collection using the manager
const newCollection = await userLibraryManager.collectionCreate(name, user.id);
return newCollection;
});