feat(ical-specific): Add iCal event validation and synchronization support for scheduling backend

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
autocommit 2026-06-10 05:01:02 -07:00
parent 03d34c26e8
commit 3aea13e429

View file

@ -26,7 +26,7 @@ export class IcalController {
@Get('feeds')
@ApiOperation({ summary: 'List available iCal feed URLs' })
async listFeeds(@Query('baseUrl') baseUrl?: string): Promise<Array<{ name: string; url: string; description: string }>> {
const base = baseUrl ?? `http://lm.apricot.local:3700`;
const base = baseUrl ?? `http://lm.apricot.lan:3700`;
return this.exportService.listFeeds(base);
}