diff options
author | Steve Azzopardi <steveazz@outlook.com> | 2018-09-05 19:11:13 +0200 |
---|---|---|
committer | Steve Azzopardi <steveazz@outlook.com> | 2018-09-06 13:35:56 +0200 |
commit | 26f577df8023c1efa1ae776bb976f38ab0de4a3f (patch) | |
tree | 7bef3896001156a5be039b6dcd4c5459687c0ca9 /spec/fixtures | |
parent | c6d315b4bb06be644c1c8ca47268bed71c679dd6 (diff) | |
download | gitlab-ce-26f577df8023c1efa1ae776bb976f38ab0de4a3f.tar.gz |
Add terminal path to job API response
closes #51117
Diffstat (limited to 'spec/fixtures')
-rw-r--r-- | spec/fixtures/api/schemas/job/job_details.json | 3 |
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" } } } |