Skip to content

Commit c5eb66b

Browse files
committed
Update api.py
1 parent 83a5dd0 commit c5eb66b

File tree

1 file changed

+2
-0
lines changed
  • packages/backend-server/app/api/v1/web

1 file changed

+2
-0
lines changed

packages/backend-server/app/api/v1/web/api.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
from app.api.v1.web.audit_logs import api as audit_logs_router
66
from app.api.v1.web.user import api as user_router
77
from app.api.v1.web.secrets import api as secrets_router
8+
from app.api.v1.web.dashboard import api as dashboard_router
89
api_router = APIRouter()
910

1011
api_router.prefix = "/web"
@@ -15,4 +16,5 @@
1516
api_router.include_router(secrets_router.secrets_router)
1617
api_router.include_router(user_router.router, tags=["User"])
1718
api_router.include_router(workspace_router.router, tags=["Workspace"])
19+
api_router.include_router(dashboard_router.router, tags=["Dashboard"])
1820

0 commit comments

Comments
 (0)