Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Create point update endpoint
  • Loading branch information
regalijan committed Feb 27, 2024
1 parent 2f06159 commit dd24dfe
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions functions/api/events-team/points/[id].ts
@@ -0,0 +1,22 @@
import { jsonError } from "../../../common.js";

export async function onRequestPost(context: RequestContext) {
const { current_user: user } = context.data;

if (!user) return jsonError("You are not logged in", 401);

if (![1 << 4, 1 << 12].find((p) => user.permissions & p))
return jsonError("No permission to edit points", 403);

const { points } = context.data.body;

if (typeof points !== "number") return jsonError("Invalid point count", 400);

await context.env.D1.prepare("UPDATE et_members SET points = ? WHERE id = ?;")
.bind(points, context.params.id)
.run();

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

0 comments on commit dd24dfe

Please sign in to comment.