We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83a5dd0 commit c5eb66bCopy full SHA for c5eb66b
packages/backend-server/app/api/v1/web/api.py
@@ -5,6 +5,7 @@
5
from app.api.v1.web.audit_logs import api as audit_logs_router
6
from app.api.v1.web.user import api as user_router
7
from app.api.v1.web.secrets import api as secrets_router
8
+from app.api.v1.web.dashboard import api as dashboard_router
9
api_router = APIRouter()
10
11
api_router.prefix = "/web"
@@ -15,4 +16,5 @@
15
16
api_router.include_router(secrets_router.secrets_router)
17
api_router.include_router(user_router.router, tags=["User"])
18
api_router.include_router(workspace_router.router, tags=["Workspace"])
19
+api_router.include_router(dashboard_router.router, tags=["Dashboard"])
20
0 commit comments