New formatting
This commit is contained in:
@ -13,7 +13,7 @@ export async function onRequestPost(context: RequestContext) {
|
||||
});
|
||||
|
||||
const appeal = await context.env.DATA.get(
|
||||
`gameappeal_${context.params.id as string}`
|
||||
`gameappeal_${context.params.id as string}`,
|
||||
);
|
||||
|
||||
if (!appeal)
|
||||
@ -45,7 +45,7 @@ export async function onRequestPost(context: RequestContext) {
|
||||
await insertLogs(
|
||||
{ [data.roblox_id]: 4 },
|
||||
context.params.id as string,
|
||||
context
|
||||
context,
|
||||
);
|
||||
await setBanList(context, banList);
|
||||
|
||||
|
@ -17,7 +17,7 @@ export async function onRequestPost(context: RequestContext) {
|
||||
await context.env.DATA.put(
|
||||
`gameappealblock_${appealData.roblox_id}`,
|
||||
`${Date.now() + 2592000000}`,
|
||||
{ expirationTtl: 2592000000 }
|
||||
{ expirationTtl: 2592000000 },
|
||||
);
|
||||
|
||||
return new Response(null, {
|
||||
|
Reference in New Issue
Block a user