debian-mirror-gitlab/app/models/concerns/cached_commit.rb

18 lines
428 B
Ruby
Raw Normal View History

2020-03-13 15:44:24 +05:30
# frozen_string_literal: true
module CachedCommit
extend ActiveSupport::Concern
def to_hash
2023-03-04 22:38:38 +05:30
Gitlab::Git::Commit::SERIALIZE_KEYS.index_with do |key|
public_send(key) # rubocop:disable GitlabSecurity/PublicSend
2020-03-13 15:44:24 +05:30
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