mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-12-14 03:41:14 +00:00
feat: add paused state to config schema, restore it in generated shema.json
This commit is contained in:
@@ -1032,6 +1032,7 @@
|
|||||||
"type": "string",
|
"type": "string",
|
||||||
"enum": [
|
"enum": [
|
||||||
"running",
|
"running",
|
||||||
|
"paused",
|
||||||
"stopped"
|
"stopped"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -689,7 +689,7 @@ CONF_SCHEMA = {
|
|||||||
"initial_state": {
|
"initial_state": {
|
||||||
"description": "Initial state of the system.",
|
"description": "Initial state of the system.",
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"enum": ["running", "stopped"],
|
"enum": ["running", "paused", "stopped"],
|
||||||
},
|
},
|
||||||
"force_entry_enable": {
|
"force_entry_enable": {
|
||||||
"description": "Force enable entry.",
|
"description": "Force enable entry.",
|
||||||
|
|||||||
Reference in New Issue
Block a user