Skip to content
Snippets Groups Projects
Commit 3a4c1c5c authored by Sato Hiroyuki's avatar Sato Hiroyuki
Browse files

Enable to filter graph by ref

parent c0e3b397
No related branches found
No related tags found
No related merge requests found
Loading
@@ -16,7 +16,7 @@ class GraphController < ProjectResourceController
Loading
@@ -16,7 +16,7 @@ class GraphController < ProjectResourceController
format.html format.html
   
format.json do format.json do
@graph = Network::Graph.new(project, @ref, @commit) @graph = Network::Graph.new(project, @ref, @commit, @options[:filter_ref])
end end
end end
end end
Loading
Loading
Loading
@@ -8,10 +8,11 @@ module Network
Loading
@@ -8,10 +8,11 @@ module Network
@max_count ||= 650 @max_count ||= 650
end end
   
def initialize project, ref, commit def initialize project, ref, commit, filter_ref
@project = project @project = project
@ref = ref @ref = ref
@commit = commit @commit = commit
@filter_ref = filter_ref
@repo = project.repo @repo = project.repo
   
@commits = collect_commits @commits = collect_commits
Loading
@@ -107,7 +108,9 @@ module Network
Loading
@@ -107,7 +108,9 @@ module Network
skip: skip skip: skip
} }
   
Grit::Commit.find_all(@repo, nil, opts) ref = @ref if @filter_ref
Grit::Commit.find_all(@repo, ref, opts)
end end
   
def commits_sort_by_ref def commits_sort_by_ref
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment