Added config options for start level trigger (#1923)

Signed-off-by: Kai Kreuzer <kai@openhab.org>
This commit is contained in:
Kai Kreuzer 2020-12-13 09:31:34 +01:00 committed by GitHub
parent 1a2c81d9e2
commit 313fb496ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,15 +2,37 @@
"triggers": [
{
"uid": "core.SystemStartlevelTrigger",
"label": "a system startlevel is reached",
"description": "This triggers the rule if a given startlevel is reached by the system.",
"label": "a system start level is reached",
"description": "This triggers the rule if a given start level is reached by the system.",
"configDescriptions": [
{
"name": "startlevel",
"type": "INTEGER",
"label": "Start Level",
"description": "The system start level.",
"required": true
"required": true,
"options": [
{
"label": "40 - Rules loaded",
"value": 40
},
{
"label": "50 - Rule engine started",
"value": 50
},
{
"label": "70 - User interfaces started",
"value": 70
},
{
"label": "80 - Things initialized",
"value": 80
},
{
"label": "100 - Startup complete",
"value": 100
}
]
}
],
"outputs": [