From a1c03c364ae5d9d329612af76f7d5002dfccfada Mon Sep 17 00:00:00 2001 From: chansizzle <14916599+chansizzle@users.noreply.github.com> Date: Thu, 6 Mar 2025 18:54:43 -0700 Subject: [PATCH] add new active calls permissions (#7295) Add new permissions to the active calls page so the fields can be removed from an admin permissions group to simplify the page, hiding more technical fields they probably will not find helpful. --- app/calls_active/app_config.php | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/app/calls_active/app_config.php b/app/calls_active/app_config.php index ff02ee2875..caafc5a997 100644 --- a/app/calls_active/app_config.php +++ b/app/calls_active/app_config.php @@ -56,5 +56,16 @@ $y++; $apps[$x]['permissions'][$y]['name'] = "call_active_all"; $apps[$x]['permissions'][$y]['groups'][] = "superadmin"; - + $y++; + $apps[$x]['permissions'][$y]['name'] = "call_active_profile"; + $apps[$x]['permissions'][$y]['groups'][] = "superadmin"; + $y++; + $apps[$x]['permissions'][$y]['name'] = "call_active_application"; + $apps[$x]['permissions'][$y]['groups'][] = "superadmin"; + $y++; + $apps[$x]['permissions'][$y]['name'] = "call_active_codec"; + $apps[$x]['permissions'][$y]['groups'][] = "superadmin"; + $y++; + $apps[$x]['permissions'][$y]['name'] = "call_active_secure"; + $apps[$x]['permissions'][$y]['groups'][] = "superadmin"; ?>