feat(ui): expose sales workspace from dashboard shells

This commit is contained in:
Your Name
2026-05-09 10:36:06 +05:00
parent f53af1f7dc
commit 5278b9d700
5 changed files with 10 additions and 2 deletions
+6
View File
@@ -297,6 +297,12 @@ def operator_ui() -> FileResponse:
return FileResponse(_OPERATOR_UI_DIR / "index.html")
@app.get("/dashboard")
def dashboard_ui() -> FileResponse:
# Backward-compatible entrypoint used in production bookmarks.
return operator_ui()
@app.get("/supervisor")
def supervisor_ui() -> FileResponse:
if not _SUPERVISOR_UI_DIR.exists():