summaryrefslogtreecommitdiff
path: root/app/controllers/graph_controller.rb
diff options
context:
space:
mode:
authorSato Hiroyuki <sathiroyuki@gmail.com>2013-03-07 15:42:30 +0900
committerSato Hiroyuki <sathiroyuki@gmail.com>2013-03-07 15:42:30 +0900
commite03a018d28488260eb6c69741680691426f823a6 (patch)
treec9118a4271405ee677852ecde239a360cd4ce1d2 /app/controllers/graph_controller.rb
parent784aa266bdd38ec560c11bea92fc9b815e2ca456 (diff)
downloadgitlab-ce-e03a018d28488260eb6c69741680691426f823a6.tar.gz
Refactor: rename module and class names.
* Module: Graph -> Network * Class: JsonBuilder -> Graph
Diffstat (limited to 'app/controllers/graph_controller.rb')
-rw-r--r--app/controllers/graph_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/graph_controller.rb b/app/controllers/graph_controller.rb
index d27fd039478..b4bf9565112 100644
--- a/app/controllers/graph_controller.rb
+++ b/app/controllers/graph_controller.rb
@@ -22,7 +22,7 @@ class GraphController < ProjectResourceController
format.html
format.json do
- @graph = Graph::JsonBuilder.new(project, @ref, @commit)
+ @graph = Network::Graph.new(project, @ref, @commit)
end
end
end