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

26 lines
484 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.js do
2013-06-25 06:55:03 -04:00
fetch_graph
end
end
end
2013-06-25 06:55:03 -04:00
private
def fetch_graph
@log = @project.repository.graph_log.to_json
@success = true
rescue => ex
@log = []
@success = false
end
end