feat: add full-stack API persistence and RBAC

This commit is contained in:
2026-07-01 06:28:18 -07:00
parent aafd9caaac
commit 914f74c5cc
18 changed files with 1148 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
import { getBootstrapState } from "@/modules/core/server/auth";
import { jsonSuccess } from "@/modules/core/server/api";
export async function GET(): Promise<Response> {
const state = await getBootstrapState();
return jsonSuccess("Bootstrap state loaded", state);
}