14 lines
399 B
TypeScript
14 lines
399 B
TypeScript
import { jsonError } from "../../../common.js";
|
|
|
|
export async function onRequest(context: RequestContext) {
|
|
const { pathname } = new URL(context.request.url);
|
|
|
|
if (pathname.endsWith("/metadata") || pathname.endsWith("/submit"))
|
|
return await context.next();
|
|
|
|
if (!(context.data.current_user.permissions & (1 << 5)))
|
|
return jsonError("Forbidden", 403);
|
|
|
|
return await context.next();
|
|
}
|