Commit f4b9de38 authored by Lin Jen-Shin's avatar Lin Jen-Shin

It's not used as a public API right now, feedback:

https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/7034#note_17522443
parent fb19d9f4
......@@ -51,7 +51,6 @@ class Commit
end
attr_accessor :raw
attr_reader :statuses
def initialize(raw_commit, project)
raise "Nil as raw commit passed" unless raw_commit
......@@ -236,12 +235,12 @@ class Commit
end
def status_for(ref)
if statuses.key?(ref)
statuses[ref]
if @statuses.key?(ref)
@statuses[ref]
elsif ref
statuses[ref] = pipelines.where(ref: ref).status
@statuses[ref] = pipelines.where(ref: ref).status
else
statuses[ref] = pipelines.status
@statuses[ref] = pipelines.status
end
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment