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/raw_controller.rb')
-rw-r--r--app/controllers/projects/raw_controller.rb37
1 files changed, 0 insertions, 37 deletions
diff --git a/app/controllers/projects/raw_controller.rb b/app/controllers/projects/raw_controller.rb
deleted file mode 100644
index b1a029ce696..00000000000
--- a/app/controllers/projects/raw_controller.rb
+++ /dev/null
@@ -1,37 +0,0 @@
-# Controller for viewing a file's raw
-class Projects::RawController < Projects::ApplicationController
- include ExtractsPath
-
- before_filter :require_non_empty_project
- before_filter :assign_ref_vars
- before_filter :authorize_download_code!
-
- def show
- @blob = @repository.blob_at(@commit.id, @path)
-
- if @blob
- type = get_blob_type
-
- headers['X-Content-Type-Options'] = 'nosniff'
-
- send_data(
- @blob.data,
- type: type,
- disposition: 'inline',
- filename: @blob.name
- )
- else
- not_found!
- end
- end
-
- private
-
- def get_blob_type
- if @blob.text?
- 'text/plain; charset=utf-8'
- else
- 'application/octet-stream'
- end
- end
-end