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

https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/7034#note_17522443
This commit is contained in:
Lin Jen-Shin 2016-10-28 03:12:12 +08:00
parent fb19d9f4e2
commit f4b9de38ed
1 changed files with 4 additions and 5 deletions

View File

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