Add a field to store the conference email address.

This commit is contained in:
FusionPBX 2021-11-28 21:40:57 -07:00 committed by GitHub
parent 7c6ed79d6c
commit 486a3bbd05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -132,6 +132,11 @@
$apps[$x]['db'][$y]['fields'][$z]['search'] = 'true';
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Optional pin number to secure access to the conference.";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "conference_email";
$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'] = "conference_profile";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Conference Profile is a collection of settings for the conference.";