summaryrefslogtreecommitdiff
path: root/cmd/dashboard
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-01-22 15:41:39 -1000
committerPeter Stone <thepeterstone@gmail.com>2026-01-22 15:41:39 -1000
commit7c1e88ef3cea6b2f08bc6e63031ad4de041e8bf3 (patch)
treec2646cb27b12f828f756b88185b286104a8902e8 /cmd/dashboard
parent317d66d9f39d9ab4fbfd592b65ca2548cb072806 (diff)
Support multiple Google Calendars
GOOGLE_CALENDAR_ID now accepts comma-separated calendar IDs: GOOGLE_CALENDAR_ID=cal1@group.calendar.google.com,cal2@gmail.com Events from all calendars are merged and sorted by start time. If one calendar fails to fetch, others still load. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat (limited to 'cmd/dashboard')
-rw-r--r--cmd/dashboard/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/dashboard/main.go b/cmd/dashboard/main.go
index 71f0375..7645048 100644
--- a/cmd/dashboard/main.go
+++ b/cmd/dashboard/main.go
@@ -90,7 +90,7 @@ func main() {
if err != nil {
log.Printf("Warning: failed to initialize Google Calendar client: %v", err)
} else {
- log.Printf("Google Calendar client initialized for calendar: %s", cfg.GoogleCalendarID)
+ log.Printf("Google Calendar client initialized for calendars: %s", cfg.GoogleCalendarID)
}
}