Once again work around weird routing behavior
This commit is contained in:
parent
b2344718e9
commit
afbea74028
@ -1,6 +1,11 @@
|
||||
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);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user