Create game appeal middleware

This commit is contained in:
regalijan 2023-10-19 16:49:28 -04:00
parent 1a7c4a27fa
commit 613c9ef5ca
Signed by: regalijan
GPG Key ID: 5D4196DA269EF520

View File

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