From 2bc46cf7a161a3bb00b196094118ccd4fe17fffa Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Sun, 28 Nov 2021 22:01:51 -0700 Subject: [PATCH] Add a field to store the conference email address. --- app/conference_centers/app_config.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/conference_centers/app_config.php b/app/conference_centers/app_config.php index 64b92d72bc..ad168d3fa7 100644 --- a/app/conference_centers/app_config.php +++ b/app/conference_centers/app_config.php @@ -307,6 +307,11 @@ $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the participant PIN number."; $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = "email_address"; + $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; + $apps[$x]['db'][$y]['fields'][$z]['search'] = 'true'; + $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Optional email address for the conference."; + $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "max_members"; $apps[$x]['db'][$y]['fields'][$z]['type'] = "numeric"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Limit number of people in the conference.";