diff options
author | Matija Čupić <matteeyah@gmail.com> | 2018-02-13 16:12:55 +0100 |
---|---|---|
committer | Matija Čupić <matteeyah@gmail.com> | 2018-02-13 16:15:23 +0100 |
commit | b413a825b129122d93230203db52902e74821495 (patch) | |
tree | e382f8b22e0ea5bbedfb9600a58b96d926a0c417 /spec | |
parent | cb295ba5bd0809630bda6c81fc2016744e9bd63f (diff) | |
download | gitlab-ce-b413a825b129122d93230203db52902e74821495.tar.gz |
Extend variable JSON Schema with optional environment_scope
Diffstat (limited to 'spec')
-rw-r--r-- | spec/fixtures/api/schemas/variable.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/fixtures/api/schemas/variable.json b/spec/fixtures/api/schemas/variable.json index 78977118b0a..6f6b044115b 100644 --- a/spec/fixtures/api/schemas/variable.json +++ b/spec/fixtures/api/schemas/variable.json @@ -10,7 +10,8 @@ "id": { "type": "integer" }, "key": { "type": "string" }, "value": { "type": "string" }, - "protected": { "type": "boolean" } + "protected": { "type": "boolean" }, + "environment_scope": { "type": "string", "optional": true } }, "additionalProperties": false } |