Now I am trying to get the presentation list to display... Why won't this work...? Adding URL params seems to have helped some.

This commit is contained in:
Scott Idem
2024-08-08 19:51:03 -04:00
parent 4ddc775aaa
commit 14fc1ee146
7 changed files with 216 additions and 220 deletions

View File

@@ -325,6 +325,9 @@ export function handle_db_save_ae_obj_li__event_session(
event_location_code: obj.event_location_code,
event_location_name: obj.event_location_name,
// A key value list of the presentations
event_presentation_kv: obj.event_presentation_kv,
});
// console.log(`Put obj with ID: ${obj.event_session_id_random} or ${id_random}`);
} catch (error) {

View File

@@ -295,6 +295,11 @@ export interface Location {
internal_use_count?: null|number;
event_name?: null|string;
// A key value list of the sessions
event_session_kv?: null|key_val;
// A key value list of the files
event_file_kv?: null|key_val;
}
@@ -362,6 +367,11 @@ export interface Session {
event_location_code?: null|string;
event_location_name?: null|string;
// A key value list of the presentations
event_presentation_kv?: null|key_val;
// A key value list of the files
event_file_kv?: null|key_val;
}
@@ -498,6 +508,9 @@ export interface Presenter {
person_affiliations?: null|string;
person_primary_email?: null|string;
person_passcode?: null|string;
// A key value list of the files
event_file_kv?: null|key_val;
}