diff options
author | Sato Hiroyuki <sathiroyuki@gmail.com> | 2013-02-05 12:42:30 +0900 |
---|---|---|
committer | Sato Hiroyuki <sathiroyuki@gmail.com> | 2013-02-05 12:42:30 +0900 |
commit | 81cc1cb87b2056b11640c9887bd40674c9d7925e (patch) | |
tree | 2a97b17c4f92a172ff71d63990d39b0c12fd28f9 /app | |
parent | 1e907498a944c22db79e9cfbd26ee7f10fe1a091 (diff) | |
download | gitlab-ce-81cc1cb87b2056b11640c9887bd40674c9d7925e.tar.gz |
Enable to display the commit older than 650th commit.
Diffstat (limited to 'app')
-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 30ec5e89db2..c4d745e9ccd 100644 --- a/app/controllers/graph_controller.rb +++ b/app/controllers/graph_controller.rb @@ -10,7 +10,7 @@ class GraphController < ProjectResourceController respond_to do |format| format.html format.json do - graph = Gitlab::Graph::JsonBuilder.new(project, @ref) + graph = Gitlab::Graph::JsonBuilder.new(project, @ref, @commit) render :json => graph.to_json end end |