forked from cerc-io/laconic-console
64 lines
1.3 KiB
JavaScript
64 lines
1.3 KiB
JavaScript
//
|
|
// Copyright 2020 DXOS.org
|
|
//
|
|
|
|
import RegistryIcon from '@material-ui/icons/Language';
|
|
import ConfigIcon from '@material-ui/icons/Settings';
|
|
// import AppsIcon from '@material-ui/icons/Apps';
|
|
// import BotsIcon from '@material-ui/icons/Android';
|
|
// import StatsIcon from '@material-ui/icons/Equalizer';
|
|
// import IPFSIcon from '@material-ui/icons/GraphicEq';
|
|
// import SignalIcon from '@material-ui/icons/Traffic';
|
|
// import KubeIcon from '@material-ui/icons/Dns';
|
|
|
|
/**
|
|
* Paths should match Main routes.
|
|
*/
|
|
export default {
|
|
services: [
|
|
{
|
|
path: '/registry',
|
|
title: 'Registry',
|
|
icon: RegistryIcon
|
|
}
|
|
// {
|
|
// path: '/system',
|
|
// title: 'System',
|
|
// icon: StatsIcon
|
|
// },
|
|
// {
|
|
// path: '/kubes',
|
|
// title: 'KUBE Nodes',
|
|
// icon: KubeIcon
|
|
// },
|
|
// {
|
|
// path: '/apps',
|
|
// title: 'Apps',
|
|
// icon: AppsIcon
|
|
// },
|
|
// {
|
|
// path: '/bots',
|
|
// title: 'Bots',
|
|
// icon: BotsIcon
|
|
// },
|
|
// {
|
|
// path: '/signaling',
|
|
// title: 'Signaling',
|
|
// icon: SignalIcon
|
|
// },
|
|
// {
|
|
// path: '/ipfs',
|
|
// title: 'IPFS',
|
|
// icon: IPFSIcon
|
|
// }
|
|
],
|
|
|
|
settings: [
|
|
{
|
|
path: '/config',
|
|
title: 'Config',
|
|
icon: ConfigIcon
|
|
}
|
|
]
|
|
};
|