Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2018-12-07 23:14:02 +0300
committerRobert Speicher <rspeicher@gmail.com>2018-12-07 23:14:02 +0300
commitabeeb24c5b2db3629d627538dc2f27fb02e01f66 (patch)
tree387c3308f1c385334d1e35e1a4b8adfb0c7ae20a /spec/fixtures
parent8fd72c63e2ecc41779dcd99c2b60e57b01bc3000 (diff)
parent6de31cddb81613045ae4ac920a054c53f2028949 (diff)
Merge branch '20422-hide-ui-variables-by-default' into 'master'
Resolve "Hide variables in UI by default" Closes #20422 See merge request gitlab-org/gitlab-ce!23518
Diffstat (limited to 'spec/fixtures')
-rw-r--r--spec/fixtures/api/schemas/job/trigger.json3
1 files changed, 1 insertions, 2 deletions
diff --git a/spec/fixtures/api/schemas/job/trigger.json b/spec/fixtures/api/schemas/job/trigger.json
index 1c7e9cc7693..807178c662c 100644
--- a/spec/fixtures/api/schemas/job/trigger.json
+++ b/spec/fixtures/api/schemas/job/trigger.json
@@ -12,12 +12,11 @@
"type": "object",
"required": [
"key",
- "value",
"public"
],
"properties": {
"key": { "type": "string" },
- "value": { "type": "string" },
+ "value": { "type": "string", "optional": true },
"public": { "type": "boolean" }
},
"additionalProperties": false