Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Create event decision endpoint
  • Loading branch information
regalijan committed Feb 20, 2024
1 parent 6c37808 commit 51b8822
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions functions/api/events-team/events/[id]/decision.ts
@@ -0,0 +1,16 @@
import { jsonError } from "../../../../common.js";

export async function onRequestPost(context: RequestContext) {
if (typeof context.data.body.approved !== "boolean")
return jsonError("Decision type must be a boolean", 400);

await context.env.D1.prepare(
"UPDATE events SET approved = ?, pending = 0 WHERE id = ?;",
)
.bind(Number(context.data.body.approved), context.data.event.id)
.run();

return new Response(null, {
status: 204,
});
}

0 comments on commit 51b8822

Please sign in to comment.