mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-10 04:22:09 +10:00
20 lines
575 B
TypeScript
20 lines
575 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 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;
|
|
});
|