mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-15 09:11:21 +10:00
feat: client collection routes
This commit is contained in:
11
server/api/v1/client/collection/default/index.get.ts
Normal file
11
server/api/v1/client/collection/default/index.get.ts
Normal file
@ -0,0 +1,11 @@
|
||||
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 collection = await userLibraryManager.fetchLibrary(user.id);
|
||||
|
||||
return collection;
|
||||
});
|
||||
Reference in New Issue
Block a user