From 11f250191dce52eadcc69c7469991cf0e96f73c5 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Thu, 16 Jan 2025 19:59:32 -0700 Subject: [PATCH] Add call recordings record_extension Call recording file format options: wav, mp3 --- app/call_recordings/app_config.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/app/call_recordings/app_config.php b/app/call_recordings/app_config.php index db076f2db1..df5ed74d42 100644 --- a/app/call_recordings/app_config.php +++ b/app/call_recordings/app_config.php @@ -45,4 +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"; + ?>