From b489b72ff5ee7a9666648a634e98a3d3492f986c Mon Sep 17 00:00:00 2001 From: Scott Idem Date: Thu, 15 May 2025 11:13:58 -0400 Subject: [PATCH] More fields... related to encryption --- app/models/journal_models.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/models/journal_models.py b/app/models/journal_models.py index 07e6e3e..346ab0f 100644 --- a/app/models/journal_models.py +++ b/app/models/journal_models.py @@ -96,6 +96,9 @@ class Journal_Base(BaseModel): # passcode_write: Optional[str] # Used to write to the journal # passcode_write_expire: Optional[int] # Number of seconds to expire the write passcode + private_passcode: Optional[str] # Used with the passcode to encrypt and decrypt the Journal Entries + public_passcode: Optional[str] # Used to allow external people to view a Journal Entry + sort_by: Optional[str] sort_by_desc: Optional[bool]