summaryrefslogtreecommitdiff
path: root/app/models/commit.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/commit.rb')
-rw-r--r--app/models/commit.rb9
1 files changed, 4 insertions, 5 deletions
diff --git a/app/models/commit.rb b/app/models/commit.rb
index 337b7445b46..20bb93f4663 100644
--- a/app/models/commit.rb
+++ b/app/models/commit.rb
@@ -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