Add short links middleware and list endpoint

This commit is contained in:
2024-10-26 02:25:31 -04:00
parent bc17b40c27
commit 822a6c0e04
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,11 @@
import { jsonResponse } from "../../common.js";
export async function onRequestGet(context: RequestContext) {
const { results } = await context.env.D1.prepare(
"SELECT created_at, destination, path FROM short_links WHERE user = ?;",
)
.bind(context.data.current_user.id)
.all();
return jsonResponse(JSON.stringify(results));
}