diff options
author | Ivan Kohler <ivan@freeside.biz> | 2014-01-04 16:23:54 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2014-01-04 16:23:54 -0800 |
commit | 5264cbf1175e3ea73cf9bcf5087c5028e6cf3b1c (patch) | |
tree | 01c07f0d3f21feaf8fa606355ed38da700fd6db1 /httemplate/elements/menu.html | |
parent | 50e89d97c110d58e0755c69775e0d243a82e352d (diff) |
svc_conferencing, RT#24389
Diffstat (limited to 'httemplate/elements/menu.html')
-rw-r--r-- | httemplate/elements/menu.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/httemplate/elements/menu.html b/httemplate/elements/menu.html index 2ae216c5c..a403bb31e 100644 --- a/httemplate/elements/menu.html +++ b/httemplate/elements/menu.html @@ -535,6 +535,11 @@ tie my %config_alarm, 'Tie::IxHash', 'Alarm central stations' => [ $fsurl.'browse/alarm_station.html', '' ], ; +tie my %config_conferencing, 'Tie::IxHash', + 'Conferencing types' => [ $fsurl.'browse/conferencing_type.html', '' ], + 'Quality levels' => [ $fsurl.'browse/conferencing_quality.html', '' ], +; + tie my %config_export_svc, 'Tie::IxHash', (); if ( $curuser->access_right('Configuration') ) { $config_export_svc{'Service definitions'} = [ $fsurl.'browse/part_svc.cgi', 'Services are items you offer to your customers' ]; @@ -551,6 +556,8 @@ $config_export_svc{'RADIUS'} = [ \%config_radius, '' ] if $curuser->access_right('Configuration'); $config_export_svc{'Cable'} = [ \%config_cable, '' ] if $curuser->access_right('Configuration'); +$config_export_svc{'Conferencing'} = [ \%config_conferencing, '' ] + if $curuser->access_right('Configuration'); $config_export_svc{'Alarm'} = [ \%config_alarm, '' ] if $curuser->access_right(['Alarm configuration', 'Alarm global configuration']); $config_export_svc{'Hardware types'} = [ $fsurl.'browse/hardware_class.html', 'Set up hardware type catalog' ] |