From 05d2b35a85a46dde9a1264d3002ba86e02e3d5eb Mon Sep 17 00:00:00 2001 From: yyamashita Date: Sun, 10 May 2026 22:47:46 +0900 Subject: Add calendar export (Google/ICS) and extend scrape window to 65 days MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Event detail page: add Google Calendar link and .ics download button - New route GET /api/events/:id/calendar.ics returns RFC 5545 iCalendar - Scrape window extended from 35 → 65 days (~2 months ahead) Co-Authored-By: Claude Sonnet 4.6 --- app/routes.ts | 1 + 1 file changed, 1 insertion(+) (limited to 'app/routes.ts') diff --git a/app/routes.ts b/app/routes.ts index 956deb4..07ba8a9 100644 --- a/app/routes.ts +++ b/app/routes.ts @@ -11,5 +11,6 @@ export default [ ...prefix("api", [ route("scrape", "routes/api.scrape.ts"), route("scrape-status", "routes/api.scrape-status.ts"), + route("events/:id/calendar.ics", "routes/api.events.$id.ics.ts"), ]), ] satisfies RouteConfig; -- cgit v1.2.3