From 7b91fa5136f8e13707b060fa6b625eae7e05e983 Mon Sep 17 00:00:00 2001 From: Ulas Kalayci Date: Mon, 4 May 2026 07:56:57 +0200 Subject: [PATCH] Fix caldav-sync.js imports to match Task 2 spec Remove buildICS, escapeICS, unescapeICS imports - these will be needed in Task 5 (Sync Functions), not in Task 2. Keep only the 4 functions specified in the Task 2 spec: parseICS, formatICSDate, tzLocalToUTC, applyDuration. Co-Authored-By: Claude Opus 4.7 --- server/services/caldav-sync.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/server/services/caldav-sync.js b/server/services/caldav-sync.js index 381d821..7a24287 100644 --- a/server/services/caldav-sync.js +++ b/server/services/caldav-sync.js @@ -12,9 +12,6 @@ import * as db from '../db.js'; // Reused functions from apple-calendar.js import { parseICS, - buildICS, - escapeICS, - unescapeICS, formatICSDate, tzLocalToUTC, applyDuration