diff options
| author | yyamashita <yyamashita@mosquit.one> | 2026-05-10 22:47:46 +0900 |
|---|---|---|
| committer | yyamashita <yyamashita@mosquit.one> | 2026-05-10 22:47:46 +0900 |
| commit | 05d2b35a85a46dde9a1264d3002ba86e02e3d5eb (patch) | |
| tree | f7722156b80b7c9d7518b05f5ce4bed2e048ef16 /app/routes.ts | |
| parent | c7b05e3667a4f8b84b1048cdd851149284d4926d (diff) | |
Add calendar export (Google/ICS) and extend scrape window to 65 days
- 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 <noreply@anthropic.com>
Diffstat (limited to 'app/routes.ts')
| -rw-r--r-- | app/routes.ts | 1 |
1 files changed, 1 insertions, 0 deletions
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; |
