Intelligence

Artifacts

Browse the repository, read documents, and manage the governance folders. Source, runtime, and infrastructure are read-only.

Repository
globals.csslayout.tsxnot-found.tsxpage.tsx
.gitignoreDockerfilenext-env.d.tsnext.config.mjspackage-lock.jsonpackage.jsonpostcss.config.mjsREADME.mdtailwind.config.tstsconfig.jsontsconfig.tsbuildinfo
README.md
CONSTITUTION_COMPLIANCE_AUDIT_V1.mdREADME.md
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