From 7c1e88ef3cea6b2f08bc6e63031ad4de041e8bf3 Mon Sep 17 00:00:00 2001 From: Peter Stone Date: Thu, 22 Jan 2026 15:41:39 -1000 Subject: 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 --- cmd/dashboard/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd/dashboard') 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) } } -- cgit v1.2.3