UI fixes and menu
This commit is contained in:
+3
-1
@@ -5,7 +5,7 @@ from fastapi.staticfiles import StaticFiles
|
||||
from starlette.middleware.sessions import SessionMiddleware
|
||||
|
||||
from .config import read_env_bool, read_env_value
|
||||
from .routes import alerting, apps, audit, auth, backups, deployments, health, incidents, jobs, migration_readiness, operations, scheduled_scripts, users, workers
|
||||
from .routes import alerting, apps, audit, auth, backups, catalog, deployments, developers, health, incidents, jobs, migration_readiness, operations, scheduled_scripts, users, workers
|
||||
|
||||
|
||||
def create_app() -> FastAPI:
|
||||
@@ -23,8 +23,10 @@ def create_app() -> FastAPI:
|
||||
app.mount("/static", StaticFiles(directory=static_dir), name="static")
|
||||
|
||||
app.include_router(health.router)
|
||||
app.include_router(catalog.router)
|
||||
app.include_router(auth.router)
|
||||
app.include_router(apps.router)
|
||||
app.include_router(developers.router)
|
||||
app.include_router(backups.router)
|
||||
app.include_router(deployments.router)
|
||||
app.include_router(incidents.router)
|
||||
|
||||
Reference in New Issue
Block a user