Files
drop/server/api/v1/admin/library/sources/index.get.ts
2025-09-20 11:21:53 +10:00

20 lines
568 B
TypeScript

import type { LibraryModel } from "~~/prisma/client/models";
import aclManager from "~~/server/internal/acls";
import libraryManager from "~~/server/internal/library";
export type WorkingLibrarySource = LibraryModel & { working: boolean };
export default defineEventHandler(async (h3) => {
const allowed = await aclManager.allowSystemACL(h3, [
"library:sources:read",
"setup",
]);
if (!allowed) throw createError({ statusCode: 403 });
const sources = await libraryManager.fetchLibraries();
// Fetch other library data here
return sources;
});