fixed optional stuff

This commit is contained in:
Bruvv
2022-01-01 12:21:21 +01:00
parent 97a2e863e5
commit c056b8fd3d

View File

@@ -27,36 +27,36 @@
}, },
"schema": { "schema": {
"TZ": "str", "TZ": "str",
"HTTPS_ONLY": "int(0,1)", "HTTPS_ONLY": "int(0,1)?",
"WHOOGLE_AUTOCOMPLETE": "int(0,1)", "WHOOGLE_AUTOCOMPLETE": "int(0,1)?",
"WHOOGLE_CONFIG_DISABLE": "int(0,1)", "WHOOGLE_CONFIG_DISABLE": "int(0,1)?",
"WHOOGLE_CONFIG_VIEW_IMAGE": "int(0,1)", "WHOOGLE_CONFIG_VIEW_IMAGE": "int(0,1)?",
"WHOOGLE_CSP": "int(0,1)", "WHOOGLE_CSP": "int(0,1)?",
"WHOOGLE_CONFIG_SAFE": "int(0,1)", "WHOOGLE_CONFIG_SAFE": "int(0,1)?",
"WHOOGLE_CONFIG_ALTS": "int(0,1)", "WHOOGLE_CONFIG_ALTS": "int(0,1)?",
"WHOOGLE_CONFIG_NEAR": "str", "WHOOGLE_CONFIG_NEAR": "str?",
"WHOOGLE_CONFIG_NEW_TAB": "int(0,1)", "WHOOGLE_CONFIG_NEW_TAB": "int(0,1)?",
"WHOOGLE_CONFIG_THEME": "list(system|light|dark)?", "WHOOGLE_CONFIG_THEME": "list(system|light|dark)?",
"WHOOGLE_CONFIG_URL": "str", "WHOOGLE_CONFIG_URL": "str",
"WHOOGLE_CONFIG_GET_ONLY": "int(0,1)", "WHOOGLE_CONFIG_GET_ONLY": "int(0,1)?",
"WHOOGLE_MINIMAL": "int(0,1)", "WHOOGLE_MINIMAL": "int(0,1)?",
"WHOOGLE_ALT_TW": "str", "WHOOGLE_ALT_TW": "str?",
"WHOOGLE_ALT_YT": "str", "WHOOGLE_ALT_YT": "str?",
"WHOOGLE_ALT_IG": "str", "WHOOGLE_ALT_IG": "str?",
"WHOOGLE_ALT_RD": "str", "WHOOGLE_ALT_RD": "str?",
"WHOOGLE_ALT_MD": "str", "WHOOGLE_ALT_MD": "str?",
"WHOOGLE_ALT_TL": "str", "WHOOGLE_ALT_TL": "str?",
"WHOOGLE_USER": "str", "WHOOGLE_USER": "str?",
"WHOOGLE_PASS": "password", "WHOOGLE_PASS": "password?",
"WHOOGLE_PROXY_USER": "str", "WHOOGLE_PROXY_USER": "str?",
"WHOOGLE_PROXY_PASS": "str", "WHOOGLE_PROXY_PASS": "str?",
"WHOOGLE_PROXY_TYPE": "str", "WHOOGLE_PROXY_TYPE": "str?",
"WHOOGLE_PROXY_LOC": "str", "WHOOGLE_PROXY_LOC": "str?",
"WHOOGLE_CONFIG_COUNTRY": "str", "WHOOGLE_CONFIG_COUNTRY": "str?",
"WHOOGLE_CONFIG_LANGUAGE": "str", "WHOOGLE_CONFIG_LANGUAGE": "str",
"WHOOGLE_CONFIG_SEARCH_LANGUAGE": "str", "WHOOGLE_CONFIG_SEARCH_LANGUAGE": "str?",
"WHOOGLE_CONFIG_BLOCK": "str", "WHOOGLE_CONFIG_BLOCK": "str?",
"WHOOGLE_CONFIG_STYLE": "str", "WHOOGLE_CONFIG_STYLE": "str?",
"WHOOGLE_RESULTS_PER_PAGE": "int(0,1)" "WHOOGLE_RESULTS_PER_PAGE": "int(0,1)?"
} }
} }