Merge branch 'MODSetter:dev' into dev

This commit is contained in:
Eric Lammertsma 2026-03-04 14:38:01 -05:00 committed by GitHub
commit 4bfcd91f3f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 977 additions and 47 deletions

View file

@ -0,0 +1,25 @@
import { NextRequest, NextResponse } from "next/server";
const backendBaseUrl = (process.env.INTERNAL_FASTAPI_BACKEND_URL || "http://backend:8000").replace(
/\/+$/,
""
);
export async function GET(request: NextRequest) {
const response = await fetch(`${backendBaseUrl}/verify-token`, {
method: "GET",
headers: {
Authorization: request.headers.get("authorization") || "",
"X-API-Key": request.headers.get("x-api-key") || "",
},
cache: "no-store",
});
return new NextResponse(response.body, {
status: response.status,
headers: {
"content-type": response.headers.get("content-type") || "application/json",
"cache-control": "no-store",
},
});
}