diff options
author | bobzel <zzzman@gmail.com> | 2025-06-19 15:34:13 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2025-06-19 15:34:13 -0400 |
commit | 21fb3a555cdd861452e2e54de3d0524e29f2bc08 (patch) | |
tree | 44b93ba0b4f9a85dafdb744ccb11dfe3386f4829 /src/client/documents/Documents.ts | |
parent | abdfe5b109f42cd5da4aceef1bd667c8e1f6cbbd (diff) | |
parent | 765c7a3870a1d446622a28b157ab00a4dced2879 (diff) |
Merge branch 'task_nodes_aarav'
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 27 |
1 files changed, 3 insertions, 24 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index aea636040..2289224cc 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -531,6 +531,9 @@ export class DocumentOptions { $task_endTime?: DateInfo | DateField = new DateInfo('end date and time', /*filterable*/ false); $task_allDay?: BoolInfo | boolean = new BoolInfo('whether task is all-day or not', /*filterable*/ false); $task_completed?: BoolInfo | boolean = new BoolInfo('whether the task is completed', /*filterable*/ false); + $googleTaskId?: STRt = new StrInfo('Google Task ID for syncing'); + $task_lastSyncedAt?: STRt = new StrInfo('last update time for task node'); + $task_deleted?: BoolInfo | boolean = new BoolInfo('whether task is deleted or not', /*filterable*/ false); _calendar_date?: DateInfo | DateField = new DateInfo('current selected date of a calendar', /*filterable*/ false); _calendar_dateRange?: STRt = new StrInfo('date range shown on a calendar', false); @@ -593,30 +596,6 @@ export namespace Docs { options: { acl: '' }, }, ], - - // AARAV ADD // - [ - DocumentType.JOURNAL, - { - layout: { view: EmptyBox, dataField: 'text' }, - options: { - title: 'Daily Journal', - acl_Guest: SharingPermissions.View, - }, - }, - ], - - [ - DocumentType.TASK, - { - layout: { view: EmptyBox, dataField: 'text' }, - options: { - title: 'Task', - acl_Guest: SharingPermissions.View, - }, - }, - ], - // AARAV ADD // ]); const suffix = 'Proto'; |