diff options
author | Sato Hiroyuki <sathiroyuki@gmail.com> | 2013-02-26 13:28:11 +0900 |
---|---|---|
committer | Sato Hiroyuki <sathiroyuki@gmail.com> | 2013-02-26 20:31:39 +0900 |
commit | d8a40d8c933da8e89013e989940f8b60d0f2e247 (patch) | |
tree | 8ccafedef6f21a99c318615164209e7d5cbce9ea /app/controllers/graph_controller.rb | |
parent | c9b1df1201dccded5fdfb4835209af9c0f258c55 (diff) | |
download | gitlab-ce-d8a40d8c933da8e89013e989940f8b60d0f2e247.tar.gz |
Move graph module from lib or vendor directory to app directory.
Because not autoloading lib directory at development mode.
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 c370433e500..8aadcfef8c2 100644 --- a/app/controllers/graph_controller.rb +++ b/app/controllers/graph_controller.rb @@ -20,7 +20,7 @@ class GraphController < ProjectResourceController respond_to do |format| format.html format.json do - graph = Gitlab::Graph::JsonBuilder.new(project, @ref, @commit) + graph = Graph::JsonBuilder.new(project, @ref, @commit) render :json => graph.to_json end end |