Everything is working except for the file uploads

This commit is contained in:
Scott Idem
2024-06-14 14:42:49 -04:00
parent 65daf86cc7
commit 06df9a6230
7 changed files with 652 additions and 120 deletions

View File

@@ -66,6 +66,19 @@ export async function load({ parent }) { // route
console.log(`load_event_presentation_obj_li = `, load_event_presentation_obj_li);
ae_acct.slct.event_presentation_obj_li = load_event_presentation_obj_li;
let load_event_file_obj_li = await events_func.handle_load_ae_obj_li__event_file({
api_cfg: ae_acct.api,
event_session_id: event_session_id,
params: {enabled: 'all', qry__limit: 50},
try_cache: false
})
.then((event_file_obj_li) => {
console.log(`event_file_obj_li = `, event_file_obj_li);
return event_file_obj_li;
});
console.log(`load_event_file_obj_li = `, load_event_file_obj_li);
ae_acct.slct.event_file_obj_li = load_event_file_obj_li;
// WARNING: Precaution against shared data between sites and presentations.
data[account_id] = ae_acct;