mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-15 09:11:21 +10:00
feat: refactor & redesign parts of UI
This commit is contained in:
14
server/api/v1/collection/default/index.get.ts
Normal file
14
server/api/v1/collection/default/index.get.ts
Normal file
@ -0,0 +1,14 @@
|
||||
import userLibraryManager from "~/server/internal/userlibrary";
|
||||
|
||||
export default defineEventHandler(async (h3) => {
|
||||
const userId = await h3.context.session.getUserId(h3);
|
||||
if (!userId)
|
||||
throw createError({
|
||||
statusCode: 403,
|
||||
statusMessage: "Requires authentication",
|
||||
});
|
||||
|
||||
const collection = await userLibraryManager.fetchLibrary(userId);
|
||||
|
||||
return collection;
|
||||
});
|
||||
Reference in New Issue
Block a user