RenderPipeline2
Deploy / deploy (push) Failing after 1m52s

This commit is contained in:
twotalesanimation
2026-08-01 15:44:26 +02:00
parent 0d0f3e1a33
commit 9a49cdc6a3
11 changed files with 2626 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
import { NextResponse } from "next/server";
import { auth } from "@/auth";
import { listExportsForQueue } from "@/lib/render-pipeline/exports";
export async function GET() {
const session = await auth();
if (!session?.user) {
return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
}
const exports = await listExportsForQueue();
return NextResponse.json({ exports });
}