This commit is contained in:
Elio Bischof
2025-06-24 10:55:47 +02:00
parent 1ed7254db6
commit 9f5161b6e3

View File

@@ -1,5 +1,5 @@
import { NextResponse } from "next/server";
export async function GET() {
return NextResponse.json({token: process.env.ZITADEL_SERVICE_USER_TOKEN}, { status: 200 });
return NextResponse.json({}, { status: 200 });
}