mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
ea796160af
- Added CodeDocs config file for customization - Fixing LGTM alerts - LGTM bug fixed again - added token option to hyperion-remote - fix DBManager::getDB() - next bugfix - correct broken signal from SettingManager to Hyperion - Token list is created after the schema is fetched Signed-off-by: Paulchen-Panther <Paulchen-Panter@protonmail.com>
55 lines
1014 B
JSON
55 lines
1014 B
JSON
{
|
|
"type" : "object",
|
|
"title" : "edt_conf_net_heading_title",
|
|
"required" : true,
|
|
"properties" :
|
|
{
|
|
"internetAccessAPI" :
|
|
{
|
|
"type" : "boolean",
|
|
"title" : "edt_conf_net_internetAccessAPI_title",
|
|
"required" : true,
|
|
"default" : false,
|
|
"propertyOrder" : 1
|
|
},
|
|
"ipWhitelist" :
|
|
{
|
|
"type" : "array",
|
|
"title" : "edt_conf_net_ipWhitelist_title",
|
|
"required" : true,
|
|
"items" : {
|
|
"type": "string",
|
|
"title" : "edt_conf_net_ip_itemtitle"
|
|
},
|
|
"options": {
|
|
"dependencies": {
|
|
"internetAccessAPI": false
|
|
}
|
|
},
|
|
"propertyOrder" : 2
|
|
},
|
|
"apiAuth" :
|
|
{
|
|
"type" : "boolean",
|
|
"title" : "edt_conf_net_apiAuth_title",
|
|
"required" : true,
|
|
"default" : true,
|
|
"propertyOrder" : 3
|
|
},
|
|
"localApiAuth" :
|
|
{
|
|
"type" : "boolean",
|
|
"title" : "edt_conf_net_localApiAuth_title",
|
|
"required" : true,
|
|
"default" : false,
|
|
"options": {
|
|
"dependencies": {
|
|
"apiAuth": true
|
|
}
|
|
},
|
|
"propertyOrder" : 4
|
|
}
|
|
},
|
|
"additionalProperties" : false
|
|
}
|