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:
authorMiranda Fluharty <mfluharty@gitlab.com>2019-03-27 22:13:55 +0300
committerKamil TrzciƄski <ayufan@ayufan.eu>2019-03-27 22:13:55 +0300
commitfc8f4b62f887abbc02e2c21b7275f53b51a5bad2 (patch)
tree3644afa753f4fe855302342bc7f2e56bf17f80e3 /spec/fixtures
parent95325c6ab7343f5c241fe63b3e0e782372e93245 (diff)
Scaffold UI elements for minimal version
Add a masked switch to variable rows Copy some behavior from the protected switch
Diffstat (limited to 'spec/fixtures')
-rw-r--r--spec/fixtures/api/schemas/variable.json2
1 files changed, 2 insertions, 0 deletions
diff --git a/spec/fixtures/api/schemas/variable.json b/spec/fixtures/api/schemas/variable.json
index 6f6b044115b..305071a6b3f 100644
--- a/spec/fixtures/api/schemas/variable.json
+++ b/spec/fixtures/api/schemas/variable.json
@@ -4,12 +4,14 @@
"id",
"key",
"value",
+ "masked",
"protected"
],
"properties": {
"id": { "type": "integer" },
"key": { "type": "string" },
"value": { "type": "string" },
+ "masked": { "type": "boolean" },
"protected": { "type": "boolean" },
"environment_scope": { "type": "string", "optional": true }
},