gitlab-org--gitlab-foss/app/controllers/projects/graphs_controller.rb

33 lines
732 B
Ruby
Raw Normal View History

class Projects::GraphsController < Projects::ApplicationController
# Authorize
before_filter :authorize_read_project!
before_filter :authorize_code_access!
before_filter :require_non_empty_project
def show
respond_to do |format|
format.html
format.json do
2013-06-25 10:55:03 +00:00
fetch_graph
end
end
end
2013-06-25 10:55:03 +00:00
private
def fetch_graph
@commits = @project.repository.commits(nil, nil, 6000, 0, true)
2013-06-25 10:55:03 +00:00
@log = []
@commits.each do |commit|
@log << {
author_name: commit.author_name.force_encoding('UTF-8'),
author_email: commit.author_email.force_encoding('UTF-8'),
date: commit.committed_date.strftime("%Y-%m-%d")
}
end
render json: @log.to_json
2013-06-25 10:55:03 +00:00
end
end