chore: add_config_files to config_schema

This commit is contained in:
Matthias
2024-08-04 09:03:32 +02:00
parent 4854bdd02f
commit 6c5fb5e22b
2 changed files with 12 additions and 0 deletions

View File

@@ -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",

View File

@@ -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",