4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-13 12:46:41 +00:00
AzuraCast/frontend/vue/components/Stations/Profile/nowPlayingPanelProps.js
2023-01-13 16:27:44 -06:00

30 lines
584 B
JavaScript

import {nowPlayingProps} from "~/functions/useNowPlaying";
export default {
...nowPlayingProps,
backendType: {
type: String,
required: true
},
userCanManageBroadcasting: {
type: Boolean,
required: true
},
backendSkipSongUri: {
type: String,
required: true
},
backendDisconnectStreamerUri: {
type: String,
required: true
},
userCanManageReports: {
type: Boolean,
required: true,
},
listenerReportUri: {
type: String,
required: true
}
}