You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a native startdate column to cards, complementing the existing
duedate. This maps to DTSTART in CalDAV's VTODO spec (RFC 5545),
making card scheduling more expressive.
- Add database migration for startdate column
- Wire startdate through Card entity, CardService, and all controllers
- Add StartDateSelector component in card sidebar
- Add updateCardStartDate Vuex action
- Add unit tests for Card entity serialization and CardService update
- Add Behat integration test for setting/clearing startdate via API
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Signed-off-by: Paul Spooren <mail@aparcar.org>
Copy file name to clipboardExpand all lines: lib/Controller/CardOcsController.php
+5-4Lines changed: 5 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ public function __construct(
37
37
#[PublicPage]
38
38
#[NoCSRFRequired]
39
39
#[RequestHeader(name: 'x-nextcloud-federation', description: 'Set to 1 when the request is performed by another Nextcloud Server to indicate a federation request', indirect: true)]
@@ -95,7 +95,7 @@ public function removeLabel(?int $boardId, int $cardId, int $labelId): DataRespo
95
95
#[PublicPage]
96
96
#[NoCSRFRequired]
97
97
#[RequestHeader(name: 'x-nextcloud-federation', description: 'Set to 1 when the request is performed by another Nextcloud Server to indicate a federation request', indirect: true)]
0 commit comments