Welcome to mirror list, hosted at ThFree Co, Russian Federation.

graphs_controller.rb « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6c2ac5fcbf42a6e71b81b219faeb755525b385c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class GraphsController < ProjectResourceController
  # 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
        @repo = @project.repository
        @stats = Gitlab::Git::GitStats.new(@repo.raw, @repo.root_ref)
        @log = @stats.parsed_log.to_json rescue []
      end
    end
  end
end