summaryrefslogtreecommitdiff
path: root/app/controllers/projects/ci/pipeline_editor_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/projects/ci/pipeline_editor_controller.rb')
-rw-r--r--app/controllers/projects/ci/pipeline_editor_controller.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/controllers/projects/ci/pipeline_editor_controller.rb b/app/controllers/projects/ci/pipeline_editor_controller.rb
new file mode 100644
index 00000000000..c2428270fa6
--- /dev/null
+++ b/app/controllers/projects/ci/pipeline_editor_controller.rb
@@ -0,0 +1,17 @@
+# frozen_string_literal: true
+
+class Projects::Ci::PipelineEditorController < Projects::ApplicationController
+ before_action :check_can_collaborate!
+
+ feature_category :pipeline_authoring
+
+ def show
+ render_404 unless ::Gitlab::Ci::Features.ci_pipeline_editor_page_enabled?(@project)
+ end
+
+ private
+
+ def check_can_collaborate!
+ render_404 unless can_collaborate_with_project?(@project)
+ end
+end