feat: support list(string) as coder_parameter (#6618)

* feat: support list(string) as coder_parameter

* Fix
This commit is contained in:
Marcin Tojek
2023-03-16 11:07:10 +01:00
committed by GitHub
parent 7076dee522
commit a7c734c60b
9 changed files with 38 additions and 45 deletions

3
coderd/apidoc/docs.go generated
View File

@ -8044,7 +8044,8 @@ const docTemplate = `{
"enum": [
"string",
"number",
"bool"
"bool",
"list(string)"
]
},
"validation_error": {

View File

@ -7235,7 +7235,7 @@
},
"type": {
"type": "string",
"enum": ["string", "number", "bool"]
"enum": ["string", "number", "bool", "list(string)"]
},
"validation_error": {
"type": "string"