mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-13 16:22:39 +10:00
10 lines
327 B
TypeScript
10 lines
327 B
TypeScript
import libraryManager from "~/server/internal/library";
|
|
|
|
export default defineEventHandler(async (h3) => {
|
|
const user = await h3.context.session.getAdminUser(h3);
|
|
if (!user) throw createError({ statusCode: 403 });
|
|
|
|
const unimportedGames = await libraryManager.fetchAllUnimportedGames();
|
|
return { unimportedGames };
|
|
});
|