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>2024-01-04 00:13:21 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2024-01-04 00:13:21 +0300
commitb63258f30497faee8987a6afbdb1dcb8f58dea92 (patch)
treed18e139f2439d1f97fbfdc597e952b49dd24418e /app/controllers/projects
parentb87af16bf2b9b09309deb902889edc1bff05256a (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/controllers/projects')
-rw-r--r--app/controllers/projects/settings/repository_controller.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/controllers/projects/settings/repository_controller.rb b/app/controllers/projects/settings/repository_controller.rb
index 38b23b24c9a..6a10d603ad7 100644
--- a/app/controllers/projects/settings/repository_controller.rb
+++ b/app/controllers/projects/settings/repository_controller.rb
@@ -7,6 +7,10 @@ module Projects
before_action :authorize_admin_project!
before_action :define_variables, only: [:create_deploy_token]
+ before_action do
+ push_frontend_feature_flag(:add_branch_rule, @project)
+ end
+
feature_category :source_code_management, [:show, :cleanup, :update]
feature_category :continuous_delivery, [:create_deploy_token]
urgency :low, [:show, :create_deploy_token]