From f6bcb5d99ebd74ae097de450e02540b09655c1bb Mon Sep 17 00:00:00 2001 From: Regalijan Date: Tue, 5 Mar 2024 18:35:25 -0500 Subject: [PATCH] Decrement points at strike addition --- functions/api/events-team/strikes/new.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/api/events-team/strikes/new.ts b/functions/api/events-team/strikes/new.ts index 9c6285d..8fcd819 100644 --- a/functions/api/events-team/strikes/new.ts +++ b/functions/api/events-team/strikes/new.ts @@ -18,7 +18,7 @@ export async function onRequestPost(context: RequestContext) { const actingUser = context.data.current_user.id; await context.env.D1.prepare( - "INSERT INTO et_strikes (created_at, created_by, id, reason, user) VALUES (?, ?, ?, ?, ?);", + "INSERT INTO et_strikes (created_at, created_by, id, reason, user) VALUES (?1, ?2, ?3, ?4, ?5); UPDATE et_members SET points = points - 100 WHERE id = ?5;", ) .bind(now, actingUser, id, reason, user) .run();