mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-14 00:31:25 +10:00
completed game importing; partial work on version importing
This commit is contained in:
9
server/api/v1/admin/import/game/index.get.ts
Normal file
9
server/api/v1/admin/import/game/index.get.ts
Normal file
@ -0,0 +1,9 @@
|
||||
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 };
|
||||
});
|
||||
Reference in New Issue
Block a user