From db635666e74c78d19bedd03860fc929dc36e59f7 Mon Sep 17 00:00:00 2001 From: demonspork Date: Sat, 10 Oct 2020 00:11:52 -0500 Subject: [PATCH] Add not_found_extension default setting Add not_found_extension default setting for PR #5507 if it gets accepted. --- app/voicemails/app_config.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/voicemails/app_config.php b/app/voicemails/app_config.php index 60a2d41e43..384d616234 100644 --- a/app/voicemails/app_config.php +++ b/app/voicemails/app_config.php @@ -281,6 +281,14 @@ $apps[$x]['default_settings'][$y]['default_setting_enabled'] = "true"; $apps[$x]['default_settings'][$y]['default_setting_description'] = ""; $y++; + $apps[$x]['default_settings'][$y]['default_setting_uuid'] = "781a0a42-0ab6-11eb-adc1-0242ac120002"; + $apps[$x]['default_settings'][$y]['default_setting_category'] = "voicemail"; + $apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "not_found_extension"; + $apps[$x]['default_settings'][$y]['default_setting_name'] = "text"; + $apps[$x]['default_settings'][$y]['default_setting_value'] = ""; + $apps[$x]['default_settings'][$y]['default_setting_enabled'] = "false"; + $apps[$x]['default_settings'][$y]['default_setting_description'] = "Voicemail Box Not Found Destination"; + $y++; $apps[$x]['default_settings'][$y]['default_setting_uuid'] = "77620475-258a-4988-bec5-f74f2603666e"; $apps[$x]['default_settings'][$y]['default_setting_category'] = "voicemail"; $apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "not_found_message";