mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-10 02:54:15 +00:00
42 lines
1019 B
JavaScript
Executable File
42 lines
1019 B
JavaScript
Executable File
import LivestreamsList from "./tabs/livestreamsList"
|
|
|
|
export default [
|
|
{
|
|
key: "live",
|
|
label: "Livestreams",
|
|
icon: "Radio",
|
|
component: LivestreamsList
|
|
},
|
|
{
|
|
key: "videos",
|
|
label: "Videos",
|
|
icon: "Video",
|
|
component: LivestreamsList,
|
|
disabled: true,
|
|
},
|
|
{
|
|
key: "controlPanel",
|
|
label: "Creator Panel",
|
|
icon: "MdSpaceDashboard",
|
|
children: [
|
|
{
|
|
key: "controlPanel.uploads",
|
|
label: "Uploads",
|
|
icon: "Upload",
|
|
disabled: true
|
|
},
|
|
{
|
|
key: "controlPanel.streaming_settings",
|
|
label: "Stream Configuration",
|
|
icon: "Settings",
|
|
disabled: true,
|
|
},
|
|
{
|
|
key: "controlPanel.dvr_settings",
|
|
label: "DVR",
|
|
icon: "MdFiberDvr",
|
|
disabled: true
|
|
}
|
|
]
|
|
}
|
|
] |