From 62365cc9b20008ffd022f8bff1c825710918c2da Mon Sep 17 00:00:00 2001 From: Alexander Payne Date: Thu, 26 Feb 2026 12:19:27 -0500 Subject: [PATCH] feat: Wire up Self-Coding Dashboard Integrate self-coding routes into dashboard: Changes: - Add import for self_coding_router in app.py - Include self_coding_router in FastAPI app - Add SELF-CODING link to desktop navigation - Add SELF-CODING link to mobile navigation The self-coding dashboard is now accessible at /self-coding --- src/dashboard/app.py | 2 ++ src/dashboard/templates/base.html | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/dashboard/app.py b/src/dashboard/app.py index 2422cd25..46be48a5 100644 --- a/src/dashboard/app.py +++ b/src/dashboard/app.py @@ -35,6 +35,7 @@ from dashboard.routes.upgrades import router as upgrades_router from dashboard.routes.work_orders import router as work_orders_router from dashboard.routes.tasks import router as tasks_router from dashboard.routes.scripture import router as scripture_router +from dashboard.routes.self_coding import router as self_coding_router from router.api import router as cascade_router logging.basicConfig( @@ -199,6 +200,7 @@ app.include_router(upgrades_router) app.include_router(work_orders_router) app.include_router(tasks_router) app.include_router(scripture_router) +app.include_router(self_coding_router) app.include_router(cascade_router) diff --git a/src/dashboard/templates/base.html b/src/dashboard/templates/base.html index 8af59f20..e43fa575 100644 --- a/src/dashboard/templates/base.html +++ b/src/dashboard/templates/base.html @@ -40,6 +40,7 @@ MEMORY ROUTER UPGRADES + SELF-CODING WORK ORDERS CREATIVE MOBILE @@ -71,6 +72,7 @@ LEDGER MEMORY WORK ORDERS + SELF-CODING CREATIVE VOICE MOBILE