Add basic FastAPI auth and React login gate
CI / basic-check (push) Has been cancelled

This commit is contained in:
Perplexity Bot
2026-08-04 20:21:34 +00:00
parent 998c5246dd
commit 8aae681706
9 changed files with 139 additions and 456 deletions
+2
View File
@@ -0,0 +1,2 @@
export type SessionUser = { username: string; role: string } | null;
export function getSessionUser(): SessionUser { return null; }