Decrement points at strike addition

This commit is contained in:
Regalijan 2024-03-05 18:35:25 -05:00
parent c4b22b6687
commit f6bcb5d99e
Signed by: regalijan
GPG Key ID: 5D4196DA269EF520

View File

@ -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();