aboutsummaryrefslogtreecommitdiff
path: root/src/client/documents/Documents.ts
diff options
context:
space:
mode:
authoraaravkumar <aarav.kumar1510@gmail.com>2025-04-30 22:54:16 -0400
committeraaravkumar <aarav.kumar1510@gmail.com>2025-04-30 22:54:16 -0400
commit54b8c7e9ec258fd43ec523aaf3d967a646022cee (patch)
tree740465370ed13a46dbfa30aebfbe2d48a321e993 /src/client/documents/Documents.ts
parent72d7414b9851bcc3d415605ce421c0572278a900 (diff)
made document options as data doc options ($), and fixed namign conventions
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r--src/client/documents/Documents.ts16
1 files changed, 6 insertions, 10 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts
index 217967c52..a11f56143 100644
--- a/src/client/documents/Documents.ts
+++ b/src/client/documents/Documents.ts
@@ -526,16 +526,12 @@ export class DocumentOptions {
ai_firefly_seed?: number;
ai_firefly_prompt?: string;
- // AARAV ADD DOC OPTIONS -- TASK MANAGER
-
- /** 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);
+ // TASK MANAGER
+ $startTime?: DateInfo | DateField = new DateInfo('start date and time', /*filterable*/ false);
+ $endTime?: DateInfo | DateField = new DateInfo('end date and time', /*filterable*/ false);
+ $allDay?: BoolInfo | boolean = new BoolInfo('whether task is all-day or not', /*filterable*/ false);
+ $completed?: BoolInfo | boolean = new BoolInfo('whether the task is completed', /*filterable*/ false);
+
/**
* JSON‐stringified slot configuration for ScrapbookBox
*/