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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/projects/network_controller.rb')
-rw-r--r--app/controllers/projects/network_controller.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/app/controllers/projects/network_controller.rb b/app/controllers/projects/network_controller.rb
deleted file mode 100644
index 83d1c1dacae..00000000000
--- a/app/controllers/projects/network_controller.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-class Projects::NetworkController < Projects::ApplicationController
- include ExtractsPath
- include ApplicationHelper
-
- before_filter :require_non_empty_project
- before_filter :assign_ref_vars
- before_filter :authorize_download_code!
-
- def show
- respond_to do |format|
- format.html
-
- format.json do
- @graph = Network::Graph.new(project, @ref, @commit, @options[:filter_ref])
- end
- end
- end
-end