From 011e7a69402287f37b8068770345f7d341bc7dca Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Fri, 17 Feb 2017 10:47:46 -0700 Subject: [PATCH] Update app_config.php --- 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 a53d9540b0..016d071543 100644 --- a/app/voicemails/app_config.php +++ b/app/voicemails/app_config.php @@ -66,6 +66,10 @@ $y++; $apps[$x]['permissions'][$y]['name'] = "voicemail_sms_edit"; $y++; + $apps[$x]['permissions'][$y]['name'] = "voicemail_transcription_edit"; + $apps[$x]['permissions'][$y]['groups'][] = "superadmin"; + $apps[$x]['permissions'][$y]['groups'][] = "admin"; + $y++; //default settings $y=0; @@ -168,6 +172,10 @@ $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the sms did to send voicemail to."; $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = "voicemail_transcription_enabled"; + $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; + $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "If voicemail transcription is enabled for this user"; + $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "voicemail_attach_file"; $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Choose whether to attach the file to the email.";