Work on encryption

This commit is contained in:
Scott Idem
2025-04-28 13:06:27 -04:00
parent b5a4a38514
commit 8c3f05a2ed
3 changed files with 58 additions and 23 deletions

View File

@@ -385,6 +385,7 @@ export async function db_save_ae_obj_li__journal_entry(
// content_md_html_alt: content_md_html_alt,
content_html: obj.content_html,
content_json: obj.content_json,
content_encrypted: obj.content_encrypted,
// url: obj.url,
// url_text: obj.url_text,

View File

@@ -194,6 +194,7 @@ export interface Journal_Entry {
content_md_html_alt?: null|string; // Markdown converted to HTML based on content. Uses marked or similar library for conversion.
content_html?: null|string;
content_json?: null|string;
content_encrypted?: null|string; // This is the encrypted content of the journal entry
start_datetime?: null|Date;
end_datetime?: null|Date;