summaryrefslogtreecommitdiff
path: root/app/controllers/graph_controller.rb
blob: 30ec5e89db2e99bee4695b546a4b4bd946f6667a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class GraphController < ProjectResourceController
  include ExtractsPath

  # 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
        graph = Gitlab::Graph::JsonBuilder.new(project, @ref)
        render :json => graph.to_json
      end
    end
  end
end