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:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-08-11 15:10:27 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-08-11 15:10:27 +0300
commit29549d052d62b949830873f76b6c77d97cbd533d (patch)
tree7ae33d6fc400a73e79b7c5cc1fa78241baff21a2 /app/controllers/projects
parentf91915aadb90fcf2fdf6326ca9160defa4217fea (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/controllers/projects')
-rw-r--r--app/controllers/projects/environments_controller.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/app/controllers/projects/environments_controller.rb b/app/controllers/projects/environments_controller.rb
index 55a60e21784..e3c2a9f72f5 100644
--- a/app/controllers/projects/environments_controller.rb
+++ b/app/controllers/projects/environments_controller.rb
@@ -12,10 +12,6 @@ class Projects::EnvironmentsController < Projects::ApplicationController
push_frontend_feature_flag(:environment_details_vue, @project)
end
- before_action only: [:index, :edit, :new] do
- push_frontend_feature_flag(:kubernetes_namespace_for_environment)
- end
-
before_action :authorize_read_environment!
before_action :authorize_create_environment!, only: [:new, :create]
before_action :authorize_stop_environment!, only: [:stop]