Noticing jobs.show was missing

This commit is contained in:
Justin 2018-05-21 17:24:51 -04:00
parent 08eb791566
commit aae249cd6f

View File

@ -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);