summaryrefslogtreecommitdiff
path: root/app/models/commit.rb
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2015-10-20 14:23:56 +0200
committerDouwe Maan <douwe@gitlab.com>2015-10-20 14:24:02 +0200
commit8710739e4e5d12ac9e2aa88a553cc1e02dc2b2d1 (patch)
tree0a632f67e2f9db6a0efcec32a86192e34b83385b /app/models/commit.rb
parent904c11ef912145e81f46133927f28c88971162ba (diff)
downloadgitlab-ce-8710739e4e5d12ac9e2aa88a553cc1e02dc2b2d1.tar.gz
Correctly find last known blob for file deleted in MR.merge-request-deleted-file
Diffstat (limited to 'app/models/commit.rb')
-rw-r--r--app/models/commit.rb12
1 files changed, 8 insertions, 4 deletions
diff --git a/app/models/commit.rb b/app/models/commit.rb
index 23b5e38336c..492f6be1ce3 100644
--- a/app/models/commit.rb
+++ b/app/models/commit.rb
@@ -164,6 +164,14 @@ class Commit
@committer ||= User.find_by_any_email(committer_email)
end
+ def parents
+ @parents ||= parent_ids.map { |id| project.commit(id) }
+ end
+
+ def parent
+ @parent ||= project.commit(self.parent_id) if self.parent_id
+ end
+
def notes
project.notes.for_commit_id(self.id)
end
@@ -181,10 +189,6 @@ class Commit
@raw.short_id(7)
end
- def parents
- @parents ||= Commit.decorate(super, project)
- end
-
def ci_commit
project.ci_commit(sha)
end