diff options
author | Sato Hiroyuki <sathiroyuki@gmail.com> | 2013-04-12 17:49:11 +0900 |
---|---|---|
committer | Sato Hiroyuki <sathiroyuki@gmail.com> | 2013-05-13 18:44:50 +0900 |
commit | 3a4c1c5c63f625e6e6075d384a85c67c3992ffb7 (patch) | |
tree | 44ee168201087808e9e085046011d60edd35a28f /app/controllers/graph_controller.rb | |
parent | c0e3b39792cb7ad479af66c07685eb37e654ccb6 (diff) | |
download | gitlab-ce-3a4c1c5c63f625e6e6075d384a85c67c3992ffb7.tar.gz |
Enable to filter graph by ref
Diffstat (limited to 'app/controllers/graph_controller.rb')
-rw-r--r-- | app/controllers/graph_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/graph_controller.rb b/app/controllers/graph_controller.rb index 22544ad82aa..c79ed5ca3cc 100644 --- a/app/controllers/graph_controller.rb +++ b/app/controllers/graph_controller.rb @@ -16,7 +16,7 @@ class GraphController < ProjectResourceController format.html format.json do - @graph = Network::Graph.new(project, @ref, @commit) + @graph = Network::Graph.new(project, @ref, @commit, @options[:filter_ref]) end end end |