@@ -61,7 +61,7 @@ var (
name = "Zoraxy"
version = "3.1.0"
nodeUUID = "generic" //System uuid, in uuidv4 format
- development = true //Set this to false to use embedded web fs
+ development = false //Set this to false to use embedded web fs
bootTime = time.Now().Unix()
/*
@@ -1226,10 +1226,6 @@
"gandi": {
"Name": "gandi",
"ConfigableFields": [
- {
- "Title": "BaseURL",
- "Datatype": "string"
- },
{
"Title": "APIKey",
"Datatype": "string"
@@ -1253,10 +1249,6 @@
"gandiv5": {
"Name": "gandiv5",
@@ -1191,10 +1191,6 @@
@@ -216,6 +216,11 @@ func main() {
case "*url.URL":
fallthrough
case "string":
+ //Add exception rule for gandi baseURL
+ if (providerName == "gandi" || providerName == "gandiv5") && fields[0] == "BaseURL" {
+ //Not useful stuff. Ignore this field
+ continue
+ }
configKeys = append(configKeys, &Field{
Title: fields[0],
Datatype: fields[1],