Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Decrement points at strike addition
  • Loading branch information
regalijan committed Mar 5, 2024
1 parent c4b22b6 commit f6bcb5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/api/events-team/strikes/new.ts
Expand Up @@ -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();
Expand Down

0 comments on commit f6bcb5d

Please sign in to comment.