Work on the new Journals module. Journal entries are now partially viewable.

This commit is contained in:
Scott Idem
2025-03-20 11:59:48 -04:00
parent 7fde0abb16
commit 596986afb7
8 changed files with 454 additions and 9 deletions

View File

@@ -45,7 +45,8 @@ export async function load_ae_obj_id__journal(
// This is expecting a list
db_save_ae_obj_li__journal({
obj_type: 'journal',
obj_li: [journal_obj_get_result]
obj_li: [journal_obj_get_result],
log_lvl: log_lvl
});
}
return journal_obj_get_result;
@@ -152,7 +153,8 @@ export async function load_ae_obj_li__journal(
if (try_cache) {
db_save_ae_obj_li__journal({
obj_type: 'journal',
obj_li: journal_obj_li_get_result
obj_li: journal_obj_li_get_result,
log_lvl: log_lvl
});
}
return journal_obj_li_get_result;