debian-mirror-gitlab/app/helpers/graph_helper.rb

17 lines
344 B
Ruby
Raw Normal View History

2014-09-02 14:37:02 +02:00
module GraphHelper
def get_refs(repo, commit)
refs = ""
2015-04-26 09:18:37 +02:00
refs << commit.ref_names(repo).join(' ')
2014-09-02 14:37:02 +02:00
# append note count
2015-04-26 09:18:37 +02:00
refs << "[#{@graph.notes[commit.id]}]" if @graph.notes[commit.id] > 0
2014-09-02 14:37:02 +02:00
refs
end
def parents_zip_spaces(parents, parent_spaces)
ids = parents.map { |p| p.id }
ids.zip(parent_spaces)
end
end