Add basic events api middleware

This commit is contained in:
regalijan 2023-10-19 16:50:33 -04:00
parent d620e04e21
commit 09d37041bc
Signed by: regalijan
GPG Key ID: 5D4196DA269EF520

View File

@ -0,0 +1,15 @@
export async function onRequest(context: RequestContext) {
if (
![1 << 3, 1 << 4, 1 << 12].find(
(int) => context.data.current_user?.permissions & int,
)
)
return new Response('{"error":"Forbidden"}', {
headers: {
"content-type": "application/json",
},
status: 401,
});
return await context.next();
}