added checkbox
parent
772b738aab
commit
ad9e9c8a03
|
@ -1,13 +1,46 @@
|
||||||
{
|
{
|
||||||
"category": "Roese",
|
"category": "Roese",
|
||||||
"name": "Roese Home",
|
"name": "Roese Home",
|
||||||
"tasks": [
|
"globalInputs": [
|
||||||
{
|
{
|
||||||
"name": "Haha",
|
"parameterName": "kundenname",
|
||||||
"onFinish": "pause",
|
"type": "text",
|
||||||
"undoPossible": false,
|
"displayName": "Name des Kunden"
|
||||||
"repeatPossible": false,
|
},
|
||||||
"scriptPath": "haha.py"
|
{
|
||||||
}
|
"parameterName": "kiste",
|
||||||
]
|
"type": "number",
|
||||||
|
"displayName": "Nummer der Kiste"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"parameterName": "kiste2",
|
||||||
|
"type": "textarea",
|
||||||
|
"displayName": "Nummer der zweiten Kiste yooo"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"parameterName": "farbig",
|
||||||
|
"type": "checkbox",
|
||||||
|
"displayName": "Farbig",
|
||||||
|
"options": {
|
||||||
|
"default": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"parameterName": "blackandwhite",
|
||||||
|
"type": "checkbox",
|
||||||
|
"displayName": "Black and White",
|
||||||
|
"options": {
|
||||||
|
"default": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tasks": [
|
||||||
|
{
|
||||||
|
"name": "Haha",
|
||||||
|
"onFinish": "pause",
|
||||||
|
"undoPossible": false,
|
||||||
|
"repeatPossible": false,
|
||||||
|
"scriptPath": "haha.py"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
2
main.go
2
main.go
|
@ -74,7 +74,7 @@ INVEX_API_TOKEN=api_token`)
|
||||||
|
|
||||||
config.LoadConfig()
|
config.LoadConfig()
|
||||||
|
|
||||||
rslogger.InitLogger(false, config.Cfg.ColorizedOutput, config.Cfg.LogManagerServerUrl)
|
rslogger.InitLogger(config.Cfg.Debug, config.Cfg.ColorizedOutput, config.Cfg.LogManagerServerUrl)
|
||||||
|
|
||||||
if os.Getenv("DOCKER") != "" {
|
if os.Getenv("DOCKER") != "" {
|
||||||
fmt.Println("Waiting for mariadb docker")
|
fmt.Println("Waiting for mariadb docker")
|
||||||
|
|
Loading…
Reference in New Issue