Commit b49c1cb1 authored by Sato Hiroyuki's avatar Sato Hiroyuki

Display note count on network graph.

parent 62ef763a
module GraphHelper module GraphHelper
def join_with_space(ary) def get_refs(commit)
ary.collect{|r|r.name}.join(" ") unless ary.nil? refs = ""
refs += commit.refs.collect{|r|r.name}.join(" ") if commit.refs
# append note count
notes = @project.notes.for_commit_id(commit.id)
refs += "[#{notes.count}]" if notes.any?
refs
end end
def parents_zip_spaces(parents, parent_spaces) def parents_zip_spaces(parents, parent_spaces)
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
}, },
time: c.time, time: c.time,
space: c.spaces.first, space: c.spaces.first,
refs: join_with_space(c.refs), refs: get_refs(c),
id: c.sha, id: c.sha,
date: c.date, date: c.date,
message: c.message, message: c.message,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment