Now with ability to set archive on datetime. Need to fix the timezone though.

This commit is contained in:
Scott Idem
2025-04-14 20:05:14 -04:00
parent d274e37e37
commit a851c5fe64
4 changed files with 228 additions and 149 deletions

View File

@@ -422,6 +422,8 @@ export async function db_save_ae_obj_li__journal_entry(
enable: obj.enable,
hide: obj.hide,
archive: obj.archive,
archive_on: obj.archive_on,
priority: obj.priority,
sort: obj.sort,
group: obj.group,

View File

@@ -73,6 +73,8 @@ export interface Journal {
enable: null|boolean;
hide?: null|boolean;
archive?: null|boolean; // Archive the journal
archive_on?: null|Date;
priority?: null|boolean
sort?: null|number;
group?: null|string;