From 961a974ab20e3ae1445d65e48fabc1abb24ab16c Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Tue, 29 Sep 2020 11:53:09 -0600 Subject: [PATCH] Update app_config.php Add queue_outbound_caller_id_name and queue_outbound_caller_id_number fields to the call center queue table. --- app/call_centers/app_config.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/call_centers/app_config.php b/app/call_centers/app_config.php index 04e8d55a13..2a0ebe4438 100644 --- a/app/call_centers/app_config.php +++ b/app/call_centers/app_config.php @@ -370,6 +370,14 @@ $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = ""; $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = "queue_outbound_caller_id_name"; + $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; + $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = ""; + $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = "queue_outbound_caller_id_number"; + $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; + $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = ""; + $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "queue_announce_sound"; $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";