From aae249cd6f953951bf4a886b556ea45258571bc4 Mon Sep 17 00:00:00 2001 From: Justin Date: Mon, 21 May 2018 17:24:51 -0400 Subject: [PATCH] Noticing jobs.show was missing --- src/services/Jobs.js | 6 ++++++ 1 file changed, 6 insertions(+) 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);