Sfoglia il codice sorgente

Updated the settings example

Brendan Abolivier 7 anni fa
parent
commit
e89f0a893e
Signed by: Brendan Abolivier <contact@brendanabolivier.com> GPG key ID: 8EF1500759F70623
1 ha cambiato i file con 18 aggiunte e 1 eliminazioni
  1. 18
    1
      settings.example.json

+ 18
- 1
settings.example.json Vedi File

@@ -15,5 +15,22 @@
15 15
 	],
16 16
 	"formOrigin": "https://example.tld",
17 17
 	"language": "en",
18
-	"labels": true
18
+	"labels": true,
19
+	"customFields": {
20
+	    "deadline": {
21
+	        "label": "Development deadline",
22
+	        "type": "select",
23
+	        "options": [
24
+	            "A week",
25
+	            "A month",
26
+	            "More than a month"
27
+	        ],
28
+	        "required": true
29
+	    },
30
+	    "budget_max": {
31
+	        "label": "Maximum budget (€)",
32
+	        "type": "number",
33
+	        "required": true
34
+	    }
35
+	}
19 36
 }