account system and syslogs

This commit is contained in:
2026-07-26 18:31:43 +00:00
parent 540f6e0af1
commit 6f7af751e1
37 changed files with 2475 additions and 258 deletions
+17
View File
@@ -0,0 +1,17 @@
const PAGE_LABELS: Record<string, string> = {
overview: "Overview",
players: "Players",
matches: "Matches",
analysis: "Analysis",
matchmaker: "Matchmaker",
ledger: "Ledger",
logs: "System logs",
settings: "Settings",
"ledger-book": "Ledger book",
"match-log": "Match log",
"matchmaker-logs": "Matchmaker logs",
};
export function pageAccessLabel(page: string): string {
return PAGE_LABELS[page] ?? page;
}