diff --git a/functions/api/game-appeals/_middleware.ts b/functions/api/game-appeals/_middleware.ts new file mode 100644 index 0000000..578bc69 --- /dev/null +++ b/functions/api/game-appeals/_middleware.ts @@ -0,0 +1,11 @@ +export async function onRequest(context: RequestContext) { + if (!(context.data.current_user.permissions & (1 << 5))) + return new Response('{"error":"Forbidden"}', { + headers: { + "content-type": "application/json", + }, + status: 403, + }); + + return await context.next(); +}