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'}
]; |