Intelligence
Artifacts
Browse the repository, read documents, and manage the governance folders. Source, runtime, and infrastructure are read-only.
Repository
repositories/aaf-holdings/hq01/app/api/executives/route.ts
423 B
import { NextResponse } from "next/server";
import { loadRegistry } from "@/lib/executives/registry";
/**
* The executive registry — which offices exist and which are active.
*
* GET /api/executives → registry entries (seeded on first call)
*/
export const runtime = "nodejs";
export const dynamic = "force-dynamic";
export async function GET() {
return NextResponse.json({ executives: loadRegistry() });
}
root · /srv/aaf