diff --git a/src/services/Jobs.js b/src/services/Jobs.js index b7861958..466ccf92 100644 --- a/src/services/Jobs.js +++ b/src/services/Jobs.js @@ -19,6 +19,12 @@ class Jobs extends BaseService { return RequestHelper.get(this, `projects/${pId}/jobs/${jobId}/artifacts/${artifactPath}`, {}, { stream }); } + show(projectId, jobId) { + const pId = encodeURIComponent(projectId); + + return RequestHelper.get(this, `projects/${pId}/jobs/${jobId}`); + } + showPipelineJobs(projectId, pipelineId, options) { const pId = encodeURIComponent(projectId);