summaryrefslogtreecommitdiff
path: root/lib/gitlab/diff/diff_refs.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/diff/diff_refs.rb')
-rw-r--r--lib/gitlab/diff/diff_refs.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/gitlab/diff/diff_refs.rb b/lib/gitlab/diff/diff_refs.rb
index 8406ca4269c..7948782aecc 100644
--- a/lib/gitlab/diff/diff_refs.rb
+++ b/lib/gitlab/diff/diff_refs.rb
@@ -18,6 +18,12 @@ module Gitlab
head_sha == other.head_sha
end
+ alias_method :eql?, :==
+
+ def hash
+ [base_sha, start_sha, head_sha].hash
+ end
+
# There is only one case in which we will have `start_sha` and `head_sha`,
# but not `base_sha`, which is when a diff is generated between an
# orphaned branch and another branch, which means there _is_ no base, but