diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-09-10 01:33:32 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-09-10 01:33:32 -0700 |
commit | 6027eeaf77eb9f7e55a60ed551d41fe804433e2e (patch) | |
tree | b75550abc97d198ffb21b34436dbc93be620b697 /httemplate/elements | |
parent | 472a125d9ab758cc94294ed51a9b16c941d658d2 (diff) |
svc_cable service have a single serial / MAC / model, not one-to-many devices like svc_phone and svc_dsl, RT#22009
Diffstat (limited to 'httemplate/elements')
-rw-r--r-- | httemplate/elements/menu.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/httemplate/elements/menu.html b/httemplate/elements/menu.html index eddcd1c5f..0d446d997 100644 --- a/httemplate/elements/menu.html +++ b/httemplate/elements/menu.html @@ -509,6 +509,10 @@ tie my %config_radius, 'Tie::IxHash', 'RADIUS Clients' => [ $fsurl.'browse/nas.html', 'Manage RADIUS clients' ], ; +tie my %config_cable, 'Tie::IxHash', + 'Cable modem models' => [ $fsurl.'browse/cable_model.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' ]; @@ -523,6 +527,8 @@ $config_export_svc{'Phone'} = [ \%config_phone, '' ] if $curuser->access_right('Configuration'); $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{'Hardware types'} = [ $fsurl.'browse/hardware_class.html', 'Set up hardware type catalog' ] if $curuser->access_right('Configuration'); |