summaryrefslogtreecommitdiff
path: root/app/controllers/projects/ci/secure_files_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/projects/ci/secure_files_controller.rb')
-rw-r--r--app/controllers/projects/ci/secure_files_controller.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/app/controllers/projects/ci/secure_files_controller.rb b/app/controllers/projects/ci/secure_files_controller.rb
deleted file mode 100644
index 59ddca19081..00000000000
--- a/app/controllers/projects/ci/secure_files_controller.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-# frozen_string_literal: true
-
-class Projects::Ci::SecureFilesController < Projects::ApplicationController
- before_action :authorize_read_secure_files!
-
- feature_category :pipeline_authoring
-
- def show
- render_404 unless Feature.enabled?(:ci_secure_files, project)
- end
-end