T6/Phase 4: 7 core entity pages (Tasks, Habits, Projects, Notes, Calendar, Graph, Search)

This commit is contained in:
Hermes
2026-08-01 02:10:18 +00:00
parent efcc748adb
commit f617c39937
14 changed files with 2082 additions and 26 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ calendarRoutes.get("/events", async (c) => {
const conditions: any[] = [eq(calendarEvents.domainId, domainId)];
if (from) conditions.push(gte(calendarEvents.startTime, new Date(from)));
if (to) conditions.push(lte(calendarEvents.endTime, new Date(to)));
if (to) conditions.push(lte(calendarEvents.startTime, new Date(to)));
const items = await db.select()
.from(calendarEvents)