mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-12 15:52:39 +10:00
15 lines
499 B
TypeScript
15 lines
499 B
TypeScript
import aclManager from "~/server/internal/acls";
|
|
import libraryManager from "~/server/internal/library";
|
|
|
|
export default defineEventHandler(async (h3) => {
|
|
const allowed = await aclManager.allowSystemACL(h3, ["library:read"]);
|
|
if (!allowed) throw createError({ statusCode: 403 });
|
|
|
|
const unimportedGames = await libraryManager.fetchAllUnimportedGames();
|
|
const games = await libraryManager.fetchGamesWithStatus();
|
|
|
|
// Fetch other library data here
|
|
|
|
return { unimportedGames, games };
|
|
});
|