summaryrefslogtreecommitdiff
path: root/app/controllers/projects/tree_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/projects/tree_controller.rb')
-rw-r--r--app/controllers/projects/tree_controller.rb27
1 files changed, 0 insertions, 27 deletions
diff --git a/app/controllers/projects/tree_controller.rb b/app/controllers/projects/tree_controller.rb
deleted file mode 100644
index b23010bf595..00000000000
--- a/app/controllers/projects/tree_controller.rb
+++ /dev/null
@@ -1,27 +0,0 @@
-# Controller for viewing a repository's file structure
-class Projects::TreeController < Projects::ApplicationController
- include ExtractsPath
-
- before_filter :require_non_empty_project, except: [:new, :create]
- before_filter :assign_ref_vars
- before_filter :authorize_download_code!
-
- def show
- if tree.entries.empty?
- if @repository.blob_at(@commit.id, @path)
- redirect_to(
- namespace_project_blob_path(@project.namespace, @project,
- File.join(@ref, @path))
- ) and return
- else
- return not_found!
- end
- end
-
- respond_to do |format|
- format.html
- # Disable cache so browser history works
- format.js { no_cache_headers }
- end
- end
-end