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

27 lines
906 B
Ruby
Raw Normal View History

class Projects::NetworkController < Projects::ApplicationController
include ExtractsPath
2013-02-28 00:56:27 -05:00
include ApplicationHelper
before_action :require_non_empty_project
before_action :assign_ref_vars
before_action :authorize_download_code!
def show
@url = namespace_project_network_path(@project.namespace, @project, @ref, @options.merge(format: :json))
@commit_url = namespace_project_commit_path(@project.namespace, @project, 'ae45ca32').gsub("ae45ca32", "%s")
@commit = @repo.commit(params[:extended_sha1]) if params[:extended_sha1].present?
respond_to do |format|
format.html do
2016-10-28 08:48:40 -04:00
if params[:extended_sha1].present? && !@commit
flash.now[:alert] = "Git revision '#{params[:extended_sha1]}' does not exist."
end
end
format.json do
2013-04-12 04:49:11 -04:00
@graph = Network::Graph.new(project, @ref, @commit, @options[:filter_ref])
end
end
end
end