all files / app/ menu-options.enum.ts

100% Statements 1/1
100% Branches 0/0
100% Functions 0/0
100% Lines 1/1
1 2 3 4 5 6 7 8 9 10    1×              
import { IMenuItem } from '@railinc/rl-ngx-core';
 
export const MENU_OPTIONS: IMenuItem[] = [
    {label : 'Home', link : '#/home', icon : 'glyphicon glyphicon-home', roles : ['RRAPPADM', 'RSIGHTMONUSR']},
    {label : 'Feature One', base : '/feature-one', roles : ['RRAPPADM', 'RSIGHTMONUSR'], children : [
        {label : 'Main Feature', link : '#/feature-one/', icon : 'glyphicon glyphicon-file', roles : ['APPADMIN', 'RSIGHTMONUSR']},
        {label : 'SPLC', link : '#/feature-one/splc', icon : 'glyphicon glyphicon-wrench', roles : ['APPADMIN', 'RSIGHTMONUSR']}
    ]},
    {label : 'About', link : '#/about'}
];