Remove old game mod management modal

This commit is contained in:
2025-10-14 02:10:07 -04:00
parent 102b29c54f
commit cf84722418
3 changed files with 6 additions and 178 deletions

View File

@@ -1,14 +0,0 @@
import { jsonResponse } from "../../common.js";
export async function onRequestGet(context: RequestContext) {
const list = await context.env.DATA.list({ prefix: "gamemod_" });
const entries = [];
for (const key of list.keys)
entries.push({
metadata: key.metadata,
user: key.name.replace("gamemod_", ""),
});
return jsonResponse(JSON.stringify(entries));
}