From 62b9f692df67c2bdc7e3f164b8f494d0067d697c Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Fri, 31 Jan 2025 17:14:43 -0700 Subject: [PATCH] Add setting call_recordings record_extension default value mp3 Call recording file format options: wav, mp3 --- app/call_recordings/app_config.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/call_recordings/app_config.php b/app/call_recordings/app_config.php index 0eb2704ffd..df5ed74d42 100644 --- a/app/call_recordings/app_config.php +++ b/app/call_recordings/app_config.php @@ -45,5 +45,13 @@ $apps[$x]['default_settings'][$y]['default_setting_value'] = "90"; $apps[$x]['default_settings'][$y]['default_setting_enabled'] = "true"; $apps[$x]['default_settings'][$y]['default_setting_description'] = "Number of days to retain the maintenance logs in the database."; + $y++; + $apps[$x]['default_settings'][$y]['default_setting_uuid'] = "e329db05-2967-422a-a71f-d0175b083828"; + $apps[$x]['default_settings'][$y]['default_setting_category'] = "call_recordings"; + $apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "record_extension"; + $apps[$x]['default_settings'][$y]['default_setting_name'] = "text"; + $apps[$x]['default_settings'][$y]['default_setting_value'] = "mp3"; + $apps[$x]['default_settings'][$y]['default_setting_enabled'] = "true"; + $apps[$x]['default_settings'][$y]['default_setting_description'] = "Call recording file format options: wav, mp3"; ?>