This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
powersync-app/nymea-app/ui/ConfigurationBase.qml
Martin Lukas 5740bf2301 Update Aboutpage regarding the licence term
Signed-off-by: Martin Lukas <martin.lukas@chargebyte.com>
2024-09-04 12:47:43 +02:00

31 lines
855 B
QML

import QtQuick 2.0
Item {
property string systemName: ""
property string appName: ""
property string appId: ""
property string company: ""
property string connectionWizard: ""
property string tunnelProxyUrl: ""
property int tunnelProxyPort: 2213
// Enable/disable certain features
property bool magicEnabled: false
property bool networkSettingsEnabled: false
property bool apiSettingsEnabled: false
property bool mqttSettingsEnabled: false
property bool webServerSettingsEnabled: false
property bool zigbeeSettingsEnabled: false
property bool zwaveSettingsEnabled: false
property bool modbusSettingsEnabled: false
property bool pluginSettingsEnabled: false
property string defaultMainView: "things"
property var mainMenuLinks: null
property bool closedSource: false
}