diff options
author | Sato Hiroyuki <sathiroyuki@gmail.com> | 2013-03-07 15:42:30 +0900 |
---|---|---|
committer | Sato Hiroyuki <sathiroyuki@gmail.com> | 2013-03-07 15:42:30 +0900 |
commit | e03a018d28488260eb6c69741680691426f823a6 (patch) | |
tree | c9118a4271405ee677852ecde239a360cd4ce1d2 /app/controllers/graph_controller.rb | |
parent | 784aa266bdd38ec560c11bea92fc9b815e2ca456 (diff) | |
download | gitlab-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.rb | 2 |
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 |