From e40eb9ecfcaedb92fd7f99708d8e043c3e268e4c Mon Sep 17 00:00:00 2001 From: Regalijan Date: Wed, 1 Nov 2023 09:03:46 -0400 Subject: [PATCH] bro... --- functions/api/game-appeals/submit.ts | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/functions/api/game-appeals/submit.ts b/functions/api/game-appeals/submit.ts index 09ce742..6480428 100644 --- a/functions/api/game-appeals/submit.ts +++ b/functions/api/game-appeals/submit.ts @@ -23,13 +23,13 @@ export async function onRequestPost(context: RequestContext) { if (reasonForUnban.length > 5000 || whatHappened.length > 5000) return jsonError( "The maximum length of each text field is 5000 characters", - 400 + 400, ); if (reasonForUnban.length < 100) return jsonError( "Your explanation of why you should be unbanned must be longer", - 400 + 400, ); if (whatHappened.length < 50) @@ -54,13 +54,15 @@ export async function onRequestPost(context: RequestContext) { reasonForUnban, roblox_id: id, roblox_username: username, - whatHappened - }) + whatHappened, + }), ); await context.env.D1.prepare( - "INSERT INTO game_appeals (created_at, id, open, user) VALUES (?, ?, ?, ?);" - ).bind(Date.now(), appealId, 1, id); + "INSERT INTO game_appeals (created_at, id, open, user) VALUES (?, ?, ?, ?);", + ) + .bind(Date.now(), appealId, 1, id) + .run(); await fetch(context.env.REPORTS_WEBHOOK, { body: JSON.stringify({ @@ -68,17 +70,17 @@ export async function onRequestPost(context: RequestContext) { { color: 3756250, description: `${username} has pleaded for forgiveness! Head to https://carcrushers.cc/mod-queue?id=${appealId}&type=gma`, - title: "Appeal Submitted" - } - ] + title: "Appeal Submitted", + }, + ], }), headers: { - "content-type": "application/json" + "content-type": "application/json", }, - method: "POST" + method: "POST", }); return new Response(null, { - status: 204 + status: 204, }); }