30 lines
583 B
TypeScript
30 lines
583 B
TypeScript
/**
|
|
* Copyright 2024 Phenix Real Time Solutions, Inc. Confidential and Proprietary. All Rights Reserved.
|
|
*/
|
|
import {faStream, faChartBar, faLayerGroup, faCheckSquare, faTh} from '@fortawesome/free-solid-svg-icons';
|
|
|
|
export default {
|
|
login: {path: '/login'},
|
|
channels: {
|
|
path: 'channels',
|
|
icon: faStream
|
|
},
|
|
rooms: {
|
|
path: 'rooms',
|
|
icon: faLayerGroup
|
|
},
|
|
analytics: {
|
|
path: 'analytics',
|
|
icon: faChartBar
|
|
},
|
|
qos: {
|
|
path: 'qos',
|
|
icon: faCheckSquare,
|
|
notSupported: true
|
|
},
|
|
dashboard: {
|
|
path: 'dashboard',
|
|
icon: faTh
|
|
}
|
|
};
|