Enable config-check for rest server
This commit is contained in:
parent
26c42bd559
commit
6f67ea44dc
@ -156,6 +156,19 @@ CONF_SCHEMA = {
|
|||||||
'webhookstatus': {'type': 'object'},
|
'webhookstatus': {'type': 'object'},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
'api_server': {
|
||||||
|
'type': 'object',
|
||||||
|
'properties': {
|
||||||
|
'enabled': {'type': 'boolean'},
|
||||||
|
'listen_ip_address': {'format': 'ipv4'},
|
||||||
|
'listen_port': {
|
||||||
|
'type': 'integer',
|
||||||
|
"minimum": 1024,
|
||||||
|
"maximum": 65535
|
||||||
|
},
|
||||||
|
},
|
||||||
|
'required': ['enabled', 'listen_ip_address', 'listen_port']
|
||||||
|
},
|
||||||
'db_url': {'type': 'string'},
|
'db_url': {'type': 'string'},
|
||||||
'initial_state': {'type': 'string', 'enum': ['running', 'stopped']},
|
'initial_state': {'type': 'string', 'enum': ['running', 'stopped']},
|
||||||
'forcebuy_enable': {'type': 'boolean'},
|
'forcebuy_enable': {'type': 'boolean'},
|
||||||
|
Loading…
Reference in New Issue
Block a user