summaryrefslogtreecommitdiff
path: root/app/controllers/projects/graphs_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/projects/graphs_controller.rb')
-rw-r--r--app/controllers/projects/graphs_controller.rb39
1 files changed, 0 insertions, 39 deletions
diff --git a/app/controllers/projects/graphs_controller.rb b/app/controllers/projects/graphs_controller.rb
deleted file mode 100644
index 6e54af356e0..00000000000
--- a/app/controllers/projects/graphs_controller.rb
+++ /dev/null
@@ -1,39 +0,0 @@
-class Projects::GraphsController < Projects::ApplicationController
- # Authorize
- before_filter :require_non_empty_project
- before_filter :authorize_download_code!
-
- def show
- respond_to do |format|
- format.html
- format.json do
- fetch_graph
- end
- end
- end
-
- def commits
- @commits = @project.repository.commits(nil, nil, 2000, 0, true)
- @commits_graph = Gitlab::Graphs::Commits.new(@commits)
- @commits_per_week_days = @commits_graph.commits_per_week_days
- @commits_per_time = @commits_graph.commits_per_time
- @commits_per_month = @commits_graph.commits_per_month
- end
-
- private
-
- def fetch_graph
- @commits = @project.repository.commits(nil, nil, 6000, 0, true)
- @log = []
-
- @commits.each do |commit|
- @log << {
- author_name: commit.author_name,
- author_email: commit.author_email,
- date: commit.committed_date.strftime("%Y-%m-%d")
- }
- end
-
- render json: @log.to_json
- end
-end