summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/gitlab/git/commit.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/gitlab/git/commit.rb b/lib/gitlab/git/commit.rb
index d95561fe1b2..28a8a79e36e 100644
--- a/lib/gitlab/git/commit.rb
+++ b/lib/gitlab/git/commit.rb
@@ -471,6 +471,14 @@ module Gitlab
private
+ def parent_ids=(shas)
+ @parent_ids = case shas
+ when String then JSON.parse(shas)
+ else
+ shas
+ end
+ end
+
def init_from_hash(hash)
raw_commit = hash.symbolize_keys