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:
authorSteve Azzopardi <steveazz@outlook.com>2018-09-05 20:11:13 +0300
committerSteve Azzopardi <steveazz@outlook.com>2018-09-06 14:35:56 +0300
commit26f577df8023c1efa1ae776bb976f38ab0de4a3f (patch)
tree7bef3896001156a5be039b6dcd4c5459687c0ca9 /spec/fixtures
parentc6d315b4bb06be644c1c8ca47268bed71c679dd6 (diff)
Add terminal path to job API response
closes #51117
Diffstat (limited to 'spec/fixtures')
-rw-r--r--spec/fixtures/api/schemas/job/job_details.json3
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/fixtures/api/schemas/job/job_details.json b/spec/fixtures/api/schemas/job/job_details.json
index 73eca83d788..b8c099250be 100644
--- a/spec/fixtures/api/schemas/job/job_details.json
+++ b/spec/fixtures/api/schemas/job/job_details.json
@@ -2,6 +2,7 @@
"allOf": [{ "$ref": "job.json" }],
"description": "An extension of job.json with more detailed information",
"properties": {
- "artifact": { "$ref": "artifact.json" }
+ "artifact": { "$ref": "artifact.json" },
+ "terminal_path": { "type": "string" }
}
}