chore: add_config_files to config_schema

pull/10489/head
Matthias 2 years ago
parent 4854bdd02f
commit 6c5fb5e22b

@ -1118,6 +1118,13 @@
],
"minimum": -1
},
"add_config_files": {
"description": "Additional configuration files to load.",
"type": "array",
"items": {
"type": "string"
}
},
"orderflow": {
"description": "Settings related to order flow.",
"type": "object",

@ -776,6 +776,11 @@ CONF_SCHEMA = {
"type": ["integer", "number"],
"minimum": -1,
},
"add_config_files": {
"description": "Additional configuration files to load.",
"type": "array",
"items": {"type": "string"},
},
"orderflow": {
"description": "Settings related to order flow.",
"type": "object",

Loading…
Cancel
Save