mirror of
https://github.com/Drop-OSS/drop.git
synced 2026-01-31 15:37:09 +01:00
* feat: game specialisation, auto-guess extensions * fix: enforce specialisation specific schema at API level * fix: lint * feat: partial work on depot endpoints * feat: bump torrential * feat: dummy version creation for depot uploads * fix: lint * fix: types * fix: lint * feat: depot version import * fix: lint * fix: remove any type * fix: lint * fix: push update interval * fix: cpu usage calculation * feat: delta version support * feat: style tweaks for selectlaunch.vue * fix: lint
25 lines
467 B
TypeScript
25 lines
467 B
TypeScript
import prisma from "~/server/internal/db/database";
|
|
import { depotAuthorization } from "./manifest.get";
|
|
|
|
export default defineEventHandler(async (h3) => {
|
|
await depotAuthorization(h3);
|
|
|
|
const games = await prisma.game.findMany({
|
|
select: {
|
|
id: true,
|
|
versions: {
|
|
select: {
|
|
versionId: true,
|
|
},
|
|
where: {
|
|
versionPath: {
|
|
not: null
|
|
}
|
|
}
|
|
},
|
|
},
|
|
});
|
|
|
|
return games;
|
|
});
|