feat: unified calendar view and eisenhower matrix view

This commit is contained in:
2026-03-01 22:17:23 +00:00
parent c21cbf5e9b
commit d792f89fe6
12 changed files with 715 additions and 1 deletions

View File

@@ -40,6 +40,8 @@ from routers import (
appointments as appointments_router,
time_tracking as time_tracking_router,
processes as processes_router,
calendar as calendar_router,
time_budgets as time_budgets_router,
)
@@ -195,3 +197,5 @@ app.include_router(weblinks_router.router)
app.include_router(appointments_router.router)
app.include_router(time_tracking_router.router)
app.include_router(processes_router.router)
app.include_router(calendar_router.router)
app.include_router(time_budgets_router.router)