Now with better Zoom info support.
This commit is contained in:
@@ -833,6 +833,7 @@ export async function db_save_ae_obj_li__event(
|
||||
mod_abstracts_json: obj.mod_abstracts_json,
|
||||
mod_badges_json: obj.mod_badges_json,
|
||||
mod_exhibits_json: obj.mod_exhibits_json,
|
||||
mod_meetings_json: obj.mod_meetings_json,
|
||||
mod_pres_mgmt_json: obj.mod_pres_mgmt_json,
|
||||
cfg_json: obj.cfg_json,
|
||||
|
||||
@@ -869,6 +870,7 @@ export async function db_save_ae_obj_li__event(
|
||||
|
||||
attend_url: obj.attend_url,
|
||||
attend_url_text: obj.attend_url_text,
|
||||
attend_url_code: obj.attend_url_code,
|
||||
attend_url_passcode: obj.attend_url_passcode,
|
||||
attend_phone: obj.attend_phone,
|
||||
attend_phone_passcode: obj.attend_phone_passcode,
|
||||
@@ -1059,6 +1061,7 @@ export const properties_to_save = [
|
||||
'mod_abstracts_json',
|
||||
'mod_badges_json',
|
||||
'mod_exhibits_json',
|
||||
'mod_meetings_json',
|
||||
'mod_pres_mgmt_json',
|
||||
'cfg_json',
|
||||
|
||||
@@ -1095,6 +1098,7 @@ export const properties_to_save = [
|
||||
|
||||
'attend_url',
|
||||
'attend_url_text',
|
||||
'attend_url_code',
|
||||
'attend_url_passcode',
|
||||
'attend_phone',
|
||||
'attend_phone_passcode',
|
||||
@@ -1183,6 +1187,7 @@ export async function process_ae_obj__event_props({
|
||||
mod_abstracts_json: obj.mod_abstracts_json,
|
||||
mod_badges_json: obj.mod_badges_json,
|
||||
mod_exhibits_json: obj.mod_exhibits_json,
|
||||
mod_meetings_json: obj.mod_meetings_json,
|
||||
mod_pres_mgmt_json: obj.mod_pres_mgmt_json,
|
||||
cfg_json: obj.cfg_json,
|
||||
|
||||
@@ -1223,6 +1228,7 @@ export async function process_ae_obj__event_props({
|
||||
|
||||
attend_url: obj.attend_url,
|
||||
attend_url_text: obj.attend_url_text,
|
||||
attend_url_code: obj.attend_url_code,
|
||||
attend_url_passcode: obj.attend_url_passcode,
|
||||
attend_phone: obj.attend_phone,
|
||||
attend_phone_passcode: obj.attend_phone_passcode,
|
||||
|
||||
@@ -43,6 +43,7 @@ export interface Event {
|
||||
mod_abstracts_json?: null|key_val;
|
||||
mod_badges_json?: null|key_val;
|
||||
mod_exhibits_json?: null|key_val;
|
||||
mod_meetings_json?: null|key_val;
|
||||
mod_pres_mgmt_json?: null|key_val;
|
||||
cfg_json?: null|key_val;
|
||||
|
||||
@@ -84,6 +85,7 @@ export interface Event {
|
||||
|
||||
attend_url?: null|string;
|
||||
attend_url_text?: null|string;
|
||||
attend_url_code?: null|string; // Meeting ID, Conference ID, etc.
|
||||
attend_url_passcode?: null|string;
|
||||
attend_phone?: null|string;
|
||||
attend_phone_passcode?: null|string;
|
||||
|
||||
@@ -151,6 +151,8 @@ let idaa_session_data_struct: key_val = {
|
||||
show__modal_edit__event_id: null,
|
||||
show__modal_view__event_id: null,
|
||||
obj_changed: false, // Used to track if the event object has been changed in the edit view
|
||||
|
||||
attend_platform: null, // 'Zoom', 'Google Meet', 'Microsoft Teams', etc.
|
||||
},
|
||||
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user