From e3680139792fb798ae9848ab7fca4d2e2f48c8f2 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Thu, 9 Jul 2020 14:34:55 -0600 Subject: [PATCH] Add option for destination hold music to the database. --- app/destinations/app_config.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/destinations/app_config.php b/app/destinations/app_config.php index 9353062f9b..5264266fb8 100644 --- a/app/destinations/app_config.php +++ b/app/destinations/app_config.php @@ -208,6 +208,10 @@ $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Select whether to record the call."; $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = "destination_hold_music"; + $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; + $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Select whether to set music on hold."; + $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "destination_accountcode"; $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['search'] = 'true';