Lots of changes. Things are working better. Files are now showing for the session and presenter. Next is location and event.

This commit is contained in:
Scott Idem
2024-08-09 17:50:54 -04:00
parent 30e6384772
commit 9a1995dd9f
25 changed files with 683 additions and 176 deletions

View File

@@ -79,7 +79,7 @@ export async function handle_load_ae_obj_li__event_file(
}
let enabled: string = (params.qry__enabled ?? 'enabled'); // all, disabled, enabled
let hidden: string = (params.qry__hidden ?? 'not_hidden'); // all, hidden, not_hidden
let hidden: string = (params.qry__hidden ?? 'all'); // all, hidden, not_hidden
let limit: number = (params.qry__limit ?? 99); // 99
let offset: number = (params.qry__offset ?? 0); // 0
@@ -105,7 +105,9 @@ export async function handle_load_ae_obj_li__event_file(
})
.then(function (event_file_obj_li_get_result) {
if (event_file_obj_li_get_result) {
handle_db_save_ae_obj_li__event_file({obj_type: 'event_file', obj_li: event_file_obj_li_get_result});
if (try_cache) {
handle_db_save_ae_obj_li__event_file({obj_type: 'event_file', obj_li: event_file_obj_li_get_result});
}
return event_file_obj_li_get_result;
} else {
console.log('No results returned.');