aboutsummaryrefslogtreecommitdiff
path: root/src/client/documents
diff options
context:
space:
mode:
authoraaravkumar <aarav.kumar1510@gmail.com>2025-04-28 23:48:41 -0400
committeraaravkumar <aarav.kumar1510@gmail.com>2025-04-28 23:48:41 -0400
commitc53ab98d37e68653057f12ff02e00fbe131ae930 (patch)
treecdeebeebe96555d03c00f4543d4b6f87a4e702ea /src/client/documents
parente59643a3346db0429dd2936ad8d7430401e658be (diff)
added task nodes calendar intergation, and ability to complete tasks directly via calendar view
Diffstat (limited to 'src/client/documents')
-rw-r--r--src/client/documents/Documents.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts
index 9b1f64a36..112a73e46 100644
--- a/src/client/documents/Documents.ts
+++ b/src/client/documents/Documents.ts
@@ -530,12 +530,12 @@ export class DocumentOptions {
/** Task start date/time picker (metadata and default) */
startTime?: DateInfo | DateField = new DateInfo('start date and time', /*filterable*/ false);
-
/** Task end date/time picker (metadata and default) */
endTime?: DateInfo | DateField = new DateInfo('end date and time', /*filterable*/ false);
-
/** Treat this as an all-day task (metadata and default) */
allDay?: BoolInfo | boolean = new BoolInfo('all-day task', /*filterable*/ false);
+ /** Whether the task is completed */
+ completed?: BoolInfo | boolean = new BoolInfo('whether the task is completed', /*filterable*/ false);
}
export const DocOptions = new DocumentOptions();