17 lines
428 B
Ruby
17 lines
428 B
Ruby
# frozen_string_literal: true
|
|
|
|
module CachedCommit
|
|
extend ActiveSupport::Concern
|
|
|
|
def to_hash
|
|
Gitlab::Git::Commit::SERIALIZE_KEYS.index_with do |key|
|
|
public_send(key) # rubocop:disable GitlabSecurity/PublicSend
|
|
end
|
|
end
|
|
|
|
# We don't save these, because they would need a table or a serialised
|
|
# field. They aren't used anywhere, so just pretend the commit has no parents.
|
|
def parent_ids
|
|
[]
|
|
end
|
|
end
|