mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
[mod] add optional
This commit is contained in:
parent
170e7e1d7f
commit
5b81ebcd8f
1 changed files with 3 additions and 1 deletions
|
@ -22,6 +22,7 @@ help.en = "some help text in english" # optional
|
||||||
help.fr = "some help text in french" # optional
|
help.fr = "some help text in french" # optional
|
||||||
example = "an example value" # optional
|
example = "an example value" # optional
|
||||||
default = "some stuff" # optional, not available for all types
|
default = "some stuff" # optional, not available for all types
|
||||||
|
optional = true # optional, will skip if not answered
|
||||||
```
|
```
|
||||||
|
|
||||||
And in json:
|
And in json:
|
||||||
|
@ -39,7 +40,8 @@ And in json:
|
||||||
"fr": "some help text in french"
|
"fr": "some help text in french"
|
||||||
}
|
}
|
||||||
"default", "some stuff", // optional, not available for all types
|
"default", "some stuff", // optional, not available for all types
|
||||||
"example": "an example value" // optional
|
"example": "an example value", // optional
|
||||||
|
"optional": true, # optional, will skip if not answered
|
||||||
},
|
},
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue