2021-09-26 17:56:40 +02:00
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls
|
|
|
|
import QtQuick.Controls.Material
|
|
|
|
import Qt5Compat.GraphicalEffects
|
|
|
|
import QtQuick.Layouts
|
2022-05-05 13:02:54 +02:00
|
|
|
import ScreenPlayWorkshop
|
|
|
|
import WorkshopEnums
|
2021-09-23 15:55:40 +02:00
|
|
|
import "upload/"
|
|
|
|
|
|
|
|
Item {
|
|
|
|
id: root
|
|
|
|
|
|
|
|
property SteamWorkshop steamWorkshop
|
|
|
|
property ScreenPlayWorkshop screenPlayWorkshop
|
|
|
|
property StackView stackView
|
|
|
|
property Background background
|
|
|
|
|
|
|
|
Component.onCompleted: {
|
2022-04-24 10:02:50 +02:00
|
|
|
root.state = "searching"
|
2022-04-23 14:32:36 +02:00
|
|
|
searchConnection.target = root.steamWorkshop
|
2021-09-23 15:55:40 +02:00
|
|
|
root.steamWorkshop.searchWorkshop(SteamEnums.K_EUGCQuery_RankedByTrend)
|
|
|
|
}
|
|
|
|
|
|
|
|
onVisibleChanged: {
|
|
|
|
if (!visible)
|
|
|
|
sidebar.close()
|
|
|
|
}
|
|
|
|
|
|
|
|
MouseArea {
|
2022-04-24 10:02:50 +02:00
|
|
|
id: rootMouseArea
|
|
|
|
enabled: false
|
2021-09-23 15:55:40 +02:00
|
|
|
z: enabled ? 10 : 0
|
|
|
|
cursorShape: enabled ? Qt.WaitCursor : Qt.ArrowCursor
|
|
|
|
acceptedButtons: Qt.NoButton
|
|
|
|
propagateComposedEvents: true
|
|
|
|
anchors.fill: parent
|
|
|
|
preventStealing: true
|
|
|
|
}
|
|
|
|
|
|
|
|
Connections {
|
2022-04-23 14:32:36 +02:00
|
|
|
id: searchConnection
|
|
|
|
ignoreUnknownSignals: true // This is needed for some reason...
|
2022-04-24 10:02:50 +02:00
|
|
|
function onWorkshopBannerCompleted() {
|
2021-09-23 15:55:40 +02:00
|
|
|
bannerTxt.text = root.steamWorkshop.workshopListModel.getBannerText(
|
|
|
|
)
|
|
|
|
background.backgroundImage = root.steamWorkshop.workshopListModel.getBannerUrl()
|
|
|
|
banner.bannerPublishedFileID = root.steamWorkshop.workshopListModel.getBannerID()
|
|
|
|
bannerTxtUnderline.numberSubscriber
|
|
|
|
= root.steamWorkshop.workshopListModel.getBannerAmountSubscriber()
|
|
|
|
}
|
2022-04-24 10:02:50 +02:00
|
|
|
|
|
|
|
function onWorkshopSearchCompleted(itemCount) {
|
|
|
|
root.state = ""
|
|
|
|
}
|
2021-09-23 15:55:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
PopupSteamWorkshopAgreement {
|
|
|
|
id: popupSteamWorkshopAgreement
|
|
|
|
}
|
|
|
|
|
|
|
|
Connections {
|
|
|
|
function onUserNeedsToAcceptWorkshopLegalAgreement() {
|
|
|
|
popupSteamWorkshopAgreement.open()
|
|
|
|
}
|
|
|
|
|
|
|
|
target: root.steamWorkshop.uploadListModel
|
|
|
|
}
|
|
|
|
|
|
|
|
Flickable {
|
|
|
|
id: scrollView
|
|
|
|
|
|
|
|
anchors.fill: parent
|
|
|
|
contentWidth: parent.width
|
|
|
|
contentHeight: gridView.height + header.height + 150
|
|
|
|
onContentYChanged: {
|
|
|
|
// Calculate parallax scrolling
|
|
|
|
if (contentY >= 0)
|
|
|
|
background.imageOffsetTop = (contentY * -0.4)
|
|
|
|
else
|
|
|
|
background.imageOffsetTop = 0
|
|
|
|
}
|
|
|
|
|
|
|
|
Item {
|
|
|
|
id: header
|
|
|
|
|
|
|
|
height: 450
|
|
|
|
|
|
|
|
anchors {
|
|
|
|
top: parent.top
|
|
|
|
right: parent.right
|
|
|
|
left: parent.left
|
|
|
|
}
|
|
|
|
|
|
|
|
Item {
|
|
|
|
id: banner
|
|
|
|
|
|
|
|
property var bannerPublishedFileID
|
|
|
|
|
|
|
|
height: header.height
|
|
|
|
|
|
|
|
anchors {
|
|
|
|
top: parent.top
|
|
|
|
right: parent.right
|
|
|
|
left: parent.left
|
|
|
|
}
|
|
|
|
|
|
|
|
Image {
|
|
|
|
id: bannerImg2
|
|
|
|
|
|
|
|
asynchronous: true
|
|
|
|
fillMode: Image.PreserveAspectCrop
|
|
|
|
|
|
|
|
anchors {
|
|
|
|
right: parent.right
|
|
|
|
left: parent.left
|
|
|
|
bottom: parent.bottom
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
anchors {
|
|
|
|
top: parent.top
|
|
|
|
topMargin: 100
|
|
|
|
right: parent.right
|
|
|
|
left: parent.left
|
|
|
|
leftMargin: 100
|
|
|
|
}
|
|
|
|
|
|
|
|
Text {
|
|
|
|
id: bannerTxtUnderline
|
|
|
|
|
|
|
|
property int numberSubscriber: 0
|
|
|
|
|
|
|
|
text: numberSubscriber + " SUBSCRIBED TO:"
|
|
|
|
font.pointSize: 12
|
|
|
|
color: "white"
|
|
|
|
font.weight: Font.Thin
|
|
|
|
}
|
|
|
|
|
|
|
|
Text {
|
|
|
|
id: bannerTxt
|
|
|
|
|
|
|
|
text: qsTr("Loading")
|
|
|
|
font.pointSize: 42
|
|
|
|
color: "white"
|
|
|
|
font.weight: Font.Thin
|
|
|
|
width: 400
|
|
|
|
}
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
spacing: 10
|
|
|
|
|
|
|
|
Button {
|
|
|
|
text: qsTr("Download now!")
|
2021-10-07 17:43:32 +02:00
|
|
|
Material.accent: Material.color(Material.Orange)
|
|
|
|
highlighted: true
|
2022-05-01 20:20:57 +02:00
|
|
|
icon.source: "qrc:/qml/ScreenPlayWorkshop/assets/icons/icon_download.svg"
|
2021-09-23 15:55:40 +02:00
|
|
|
onClicked: {
|
|
|
|
text = qsTr("Downloading...")
|
|
|
|
root.steamWorkshop.subscribeItem(
|
|
|
|
root.steamWorkshop.workshopListModel.getBannerID(
|
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Button {
|
|
|
|
text: qsTr("Details")
|
2021-10-07 17:43:32 +02:00
|
|
|
Material.accent: Material.color(Material.Orange)
|
|
|
|
highlighted: true
|
2022-05-01 20:20:57 +02:00
|
|
|
icon.source: "qrc:/qml/ScreenPlayWorkshop/assets/icons/icon_info.svg"
|
2021-09-23 15:55:40 +02:00
|
|
|
visible: false
|
|
|
|
onClicked: {
|
|
|
|
sidebar.setWorkshopItem(publishedFileID,
|
|
|
|
imgUrl,
|
|
|
|
additionalPreviewUrl,
|
|
|
|
subscriptionCount)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
onClicked: Qt.openUrlExternally(
|
|
|
|
"steam://url/CommunityFilePage/"
|
|
|
|
+ banner.bannerPublishedFileID)
|
|
|
|
height: 30
|
|
|
|
width: bannerTxtOpenInSteam.paintedWidth
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
|
|
|
|
Text {
|
|
|
|
id: bannerTxtOpenInSteam
|
|
|
|
|
|
|
|
opacity: 0.7
|
|
|
|
text: qsTr("Open In Steam")
|
|
|
|
font.pointSize: 10
|
|
|
|
color: "white"
|
|
|
|
font.underline: true
|
|
|
|
font.weight: Font.Thin
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
GridView {
|
|
|
|
id: gridView
|
|
|
|
|
|
|
|
maximumFlickVelocity: 7000
|
|
|
|
flickDeceleration: 5000
|
|
|
|
cellWidth: 330
|
|
|
|
cellHeight: 190
|
|
|
|
height: contentHeight
|
|
|
|
interactive: false
|
|
|
|
model: root.steamWorkshop.workshopListModel
|
|
|
|
boundsBehavior: Flickable.StopAtBounds
|
|
|
|
|
|
|
|
anchors {
|
|
|
|
top: header.bottom
|
|
|
|
topMargin: 100
|
|
|
|
left: parent.left
|
|
|
|
right: parent.right
|
|
|
|
leftMargin: 45
|
|
|
|
}
|
|
|
|
|
|
|
|
header: Item {
|
|
|
|
property alias searchField: tiSearch
|
|
|
|
|
|
|
|
height: 80
|
|
|
|
width: gridView.width - gridView.anchors.leftMargin
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
color: Material.backgroundColor
|
|
|
|
radius: 3
|
|
|
|
width: parent.width - 20
|
|
|
|
height: 70
|
|
|
|
anchors.centerIn: parent
|
|
|
|
|
|
|
|
SteamImage {
|
|
|
|
id: avatar
|
|
|
|
|
|
|
|
width: 70
|
|
|
|
height: 70
|
|
|
|
Component.onCompleted: {
|
|
|
|
steamWorkshop.steamAccount.loadAvatar()
|
|
|
|
}
|
|
|
|
|
|
|
|
anchors {
|
|
|
|
left: parent.left
|
|
|
|
verticalCenter: parent.verticalCenter
|
|
|
|
}
|
|
|
|
|
|
|
|
Connections {
|
|
|
|
function onAvatarChanged(_avatar) {
|
|
|
|
avatar.setImage(_avatar)
|
|
|
|
avatarPlaceholder.opacity = 0
|
|
|
|
}
|
|
|
|
|
|
|
|
target: steamWorkshop.steamAccount
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Image {
|
|
|
|
id: avatarPlaceholder
|
|
|
|
anchors.fill: avatar
|
2022-05-01 20:20:57 +02:00
|
|
|
source: "qrc:/qml/ScreenPlayWorkshop/assets/images/steam_default_avatar.png"
|
2021-09-23 15:55:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Button {
|
|
|
|
id: btnSteamProfile
|
|
|
|
|
|
|
|
anchors {
|
|
|
|
verticalCenter: parent.verticalCenter
|
|
|
|
left: avatar.right
|
|
|
|
leftMargin: 20
|
|
|
|
}
|
|
|
|
|
|
|
|
text: qsTr("Profile")
|
|
|
|
onClicked: {
|
|
|
|
stackView.push(
|
2022-04-30 13:22:17 +02:00
|
|
|
"qrc:/qml/ScreenPlayWorkshop/qml/SteamProfile.qml",
|
2022-04-23 14:32:36 +02:00
|
|
|
{
|
2021-09-23 15:55:40 +02:00
|
|
|
"screenPlayWorkshop": root.screenPlayWorkshop,
|
|
|
|
"steamWorkshop": root.steamWorkshop
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Button {
|
|
|
|
id: btnSteamUpload
|
|
|
|
|
|
|
|
anchors {
|
|
|
|
verticalCenter: parent.verticalCenter
|
|
|
|
left: btnSteamProfile.right
|
|
|
|
leftMargin: 20
|
|
|
|
}
|
|
|
|
|
|
|
|
text: qsTr("Upload")
|
|
|
|
onClicked: {
|
|
|
|
stackView.push(
|
2022-04-30 13:22:17 +02:00
|
|
|
"qrc:/qml/ScreenPlayWorkshop/qml/upload/UploadProject.qml",
|
2022-04-23 14:32:36 +02:00
|
|
|
{
|
2021-09-23 15:55:40 +02:00
|
|
|
"screenPlayWorkshop": root.screenPlayWorkshop,
|
|
|
|
"steamWorkshop": root.steamWorkshop
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Item {
|
|
|
|
id: searchWrapper
|
|
|
|
|
|
|
|
width: 400
|
|
|
|
height: 50
|
|
|
|
|
|
|
|
anchors {
|
|
|
|
verticalCenter: parent.verticalCenter
|
|
|
|
left: btnSteamUpload.right
|
|
|
|
leftMargin: 20
|
|
|
|
}
|
|
|
|
|
2022-04-23 14:32:36 +02:00
|
|
|
TextField {
|
2021-09-23 15:55:40 +02:00
|
|
|
id: tiSearch
|
2022-04-24 09:18:50 +02:00
|
|
|
placeholderTextColor: Material.secondaryTextColor
|
2021-09-23 15:55:40 +02:00
|
|
|
placeholderText: qsTr("Search for Wallpaper and Widgets...")
|
2022-04-24 10:02:50 +02:00
|
|
|
onEditingFinished: {
|
|
|
|
root.state = "searching"
|
|
|
|
if (tiSearch.text === "")
|
|
|
|
return root.steamWorkshop.searchWorkshop(
|
|
|
|
SteamEnums.K_EUGCQuery_RankedByTrend)
|
|
|
|
|
|
|
|
root.steamWorkshop.searchWorkshopByText(
|
|
|
|
tiSearch.text)
|
|
|
|
}
|
2021-09-23 15:55:40 +02:00
|
|
|
anchors {
|
|
|
|
top: parent.top
|
|
|
|
right: parent.right
|
|
|
|
bottom: parent.bottom
|
|
|
|
left: parent.left
|
|
|
|
leftMargin: 10
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ToolButton {
|
|
|
|
id: tb
|
2022-05-01 20:20:57 +02:00
|
|
|
icon.source: "qrc:/qml/ScreenPlayWorkshop/assets/icons/icon_search.svg"
|
2022-04-24 10:02:50 +02:00
|
|
|
onClicked: {
|
|
|
|
root.state = "searching"
|
|
|
|
root.steamWorkshop.searchWorkshopByText(
|
|
|
|
tiSearch.text)
|
|
|
|
}
|
2021-09-23 15:55:40 +02:00
|
|
|
icon.width: 20
|
|
|
|
icon.height: 20
|
|
|
|
anchors {
|
|
|
|
right: parent.right
|
|
|
|
bottom: parent.bottom
|
|
|
|
bottomMargin: 10
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
spacing: 20
|
|
|
|
|
|
|
|
anchors {
|
|
|
|
left: searchWrapper.right
|
|
|
|
leftMargin: 20
|
|
|
|
right: cbQuerySort.left
|
|
|
|
rightMargin: 20
|
|
|
|
verticalCenter: parent.verticalCenter
|
|
|
|
}
|
|
|
|
|
|
|
|
Item {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.fillHeight: true
|
|
|
|
}
|
|
|
|
|
|
|
|
Button {
|
|
|
|
text: qsTr("Open Workshop in Steam")
|
|
|
|
font.capitalization: Font.Capitalize
|
|
|
|
onClicked: Qt.openUrlExternally(
|
|
|
|
"steam://url/SteamWorkshopPage/672870")
|
2022-05-01 20:20:57 +02:00
|
|
|
icon.source: "qrc:/qml/ScreenPlayWorkshop/assets/icons/icon_steam.svg"
|
2021-09-23 15:55:40 +02:00
|
|
|
icon.width: 18
|
|
|
|
icon.height: 18
|
|
|
|
height: cbQuerySort.height
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ComboBox {
|
|
|
|
id: cbQuerySort
|
|
|
|
|
|
|
|
width: 220
|
|
|
|
height: searchWrapper.height
|
|
|
|
textRole: "text"
|
|
|
|
valueRole: "value"
|
|
|
|
currentIndex: 2
|
|
|
|
Layout.preferredHeight: searchWrapper.height
|
|
|
|
model: [{
|
|
|
|
"value": SteamEnums.k_EUGCQuery_RankedByVote,
|
|
|
|
"text": qsTr("Ranked By Vote")
|
|
|
|
}, {
|
|
|
|
"value": SteamEnums.K_EUGCQuery_RankedByPublicationDate,
|
|
|
|
"text": qsTr("Publication Date")
|
|
|
|
}, {
|
|
|
|
"value": SteamEnums.K_EUGCQuery_RankedByTrend,
|
|
|
|
"text": qsTr("Ranked By Trend")
|
|
|
|
}, {
|
|
|
|
"value": SteamEnums.K_EUGCQuery_FavoritedByFriendsRankedByPublicationDate,
|
|
|
|
"text": qsTr("Favorited By Friends")
|
|
|
|
}, {
|
|
|
|
"value": SteamEnums.K_EUGCQuery_CreatedByFriendsRankedByPublicationDate,
|
|
|
|
"text": qsTr("Created By Friends")
|
|
|
|
}, {
|
|
|
|
"value": SteamEnums.K_EUGCQuery_CreatedByFollowedUsersRankedByPublicationDate,
|
|
|
|
"text": qsTr("Created By Followed Users")
|
|
|
|
}, {
|
|
|
|
"value": SteamEnums.K_EUGCQuery_NotYetRated,
|
|
|
|
"text": qsTr("Not Yet Rated")
|
|
|
|
}, {
|
|
|
|
"value": SteamEnums.K_EUGCQuery_RankedByTotalVotesAsc,
|
|
|
|
"text": qsTr("Total VotesAsc")
|
|
|
|
}, {
|
|
|
|
"value": SteamEnums.K_EUGCQuery_RankedByVotesUp,
|
|
|
|
"text": qsTr("Votes Up")
|
|
|
|
}, {
|
|
|
|
"value": SteamEnums.K_EUGCQuery_RankedByTotalUniqueSubscriptions,
|
|
|
|
"text": qsTr("Total Unique Subscriptions")
|
|
|
|
}]
|
|
|
|
onActivated: {
|
2022-04-24 10:02:50 +02:00
|
|
|
root.state = "searching"
|
2021-09-23 15:55:40 +02:00
|
|
|
root.steamWorkshop.searchWorkshop(
|
|
|
|
cbQuerySort.currentValue)
|
|
|
|
}
|
|
|
|
|
|
|
|
anchors {
|
|
|
|
verticalCenter: parent.verticalCenter
|
|
|
|
right: parent.right
|
|
|
|
rightMargin: 10
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
delegate: WorkshopItem {
|
|
|
|
imgUrl: m_workshopPreview
|
|
|
|
name: m_workshopTitle
|
|
|
|
publishedFileID: m_publishedFileID
|
|
|
|
additionalPreviewUrl: m_additionalPreviewUrl
|
|
|
|
subscriptionCount: m_subscriptionCount
|
|
|
|
itemIndex: index
|
|
|
|
steamWorkshop: root.steamWorkshop
|
|
|
|
onClicked: {
|
|
|
|
sidebar.setWorkshopItem(publishedFileID, imgUrl,
|
|
|
|
additionalPreviewUrl,
|
|
|
|
subscriptionCount)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ScrollBar.vertical: ScrollBar {
|
|
|
|
id: workshopScrollBar
|
|
|
|
|
|
|
|
snapMode: ScrollBar.SnapOnRelease
|
|
|
|
}
|
|
|
|
|
|
|
|
footer: RowLayout {
|
|
|
|
height: 150
|
|
|
|
width: parent.width
|
|
|
|
spacing: 10
|
|
|
|
|
|
|
|
Item {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
|
|
|
|
Button {
|
|
|
|
id: btnBack
|
|
|
|
|
|
|
|
Layout.alignment: Qt.AlignVCenter
|
|
|
|
text: qsTr("Back")
|
|
|
|
enabled: root.steamWorkshop.workshopListModel.currentPage > 1
|
|
|
|
onClicked: {
|
2022-04-24 10:02:50 +02:00
|
|
|
root.state = "searching"
|
2021-09-23 15:55:40 +02:00
|
|
|
root.steamWorkshop.workshopListModel.setCurrentPage(
|
|
|
|
root.steamWorkshop.workshopListModel.currentPage - 1)
|
|
|
|
root.steamWorkshop.searchWorkshop(
|
|
|
|
SteamEnums.K_EUGCQuery_RankedByTrend)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Text {
|
|
|
|
id: txtPage
|
|
|
|
|
|
|
|
Layout.alignment: Qt.AlignVCenter
|
|
|
|
text: root.steamWorkshop.workshopListModel.currentPage + "/"
|
|
|
|
+ root.steamWorkshop.workshopListModel.pages
|
|
|
|
color: Material.primaryTextColor
|
|
|
|
}
|
|
|
|
|
|
|
|
Button {
|
|
|
|
id: btnForward
|
|
|
|
|
|
|
|
Layout.alignment: Qt.AlignVCenter
|
|
|
|
text: qsTr("Forward")
|
|
|
|
enabled: root.steamWorkshop.workshopListModel.currentPage
|
|
|
|
<= root.steamWorkshop.workshopListModel.pages - 1
|
|
|
|
onClicked: {
|
2022-04-24 10:02:50 +02:00
|
|
|
root.state = "searching"
|
2021-09-23 15:55:40 +02:00
|
|
|
root.steamWorkshop.workshopListModel.setCurrentPage(
|
|
|
|
root.steamWorkshop.workshopListModel.currentPage + 1)
|
|
|
|
root.steamWorkshop.searchWorkshop(
|
|
|
|
SteamEnums.K_EUGCQuery_RankedByTrend)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Item {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Behavior on contentHeight {
|
|
|
|
PropertyAnimation {
|
|
|
|
duration: 400
|
|
|
|
property: "contentHeight"
|
|
|
|
easing.type: Easing.InOutQuart
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ScrollBar.vertical: ScrollBar {
|
|
|
|
snapMode: ScrollBar.SnapOnRelease
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Sidebar {
|
|
|
|
id: sidebar
|
|
|
|
|
|
|
|
topMargin: 60
|
|
|
|
steamWorkshop: root.steamWorkshop
|
|
|
|
onTagClicked: {
|
|
|
|
gridView.headerItem.searchField.text = tag
|
|
|
|
sidebar.close()
|
|
|
|
}
|
|
|
|
}
|
2022-04-24 10:02:50 +02:00
|
|
|
|
|
|
|
states: [
|
|
|
|
State {
|
|
|
|
name: "searching"
|
|
|
|
PropertyChanges {
|
|
|
|
target: rootMouseArea
|
|
|
|
enabled: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2021-09-23 15:55:40 +02:00
|
|
|
}
|