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:
authorLin Jen-Shin <godfat@godfat.org>2016-10-21 11:22:43 +0300
committerLin Jen-Shin <godfat@godfat.org>2016-10-24 17:26:06 +0300
commit5416d0e0837f69f35a3a9deaf947fd62e5293661 (patch)
tree464b29e773327e213a035131ee0f8f2c770f0fd7 /app/models/commit.rb
parent4028022f56f81f9cbe1227dae53c878f702bd8fa (diff)
Pass `@ref` along so we know which pipeline to show
Closes #23615
Diffstat (limited to 'app/models/commit.rb')
-rw-r--r--app/models/commit.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/models/commit.rb b/app/models/commit.rb
index e64fd1e0c1b..02e06657306 100644
--- a/app/models/commit.rb
+++ b/app/models/commit.rb
@@ -225,6 +225,10 @@ class Commit
)
end
+ def pipelines_for(ref)
+ project.pipelines.where(sha: sha, ref: ref)
+ end
+
def pipelines
@pipeline ||= project.pipelines.where(sha: sha)
end