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-06-15 15:08:47 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-06-15 15:08:47 +0300
commit717436a767395d0ed850a16d07f19cd51c3d4551 (patch)
tree5c2d69721710081da88c8dcf097813e2f40c062c /db/fixtures
parent5a14a0fe63ac7dace9821be554ad3b3951529708 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'db/fixtures')
-rw-r--r--db/fixtures/development/17_cycle_analytics.rb12
1 files changed, 7 insertions, 5 deletions
diff --git a/db/fixtures/development/17_cycle_analytics.rb b/db/fixtures/development/17_cycle_analytics.rb
index 6f4819c5ca4..6e4872a29e7 100644
--- a/db/fixtures/development/17_cycle_analytics.rb
+++ b/db/fixtures/development/17_cycle_analytics.rb
@@ -95,11 +95,13 @@ class Gitlab::Seeder::CycleAnalytics # rubocop:disable Style/ClassAndModuleChild
private
def create_custom_value_stream!
- Analytics::CycleAnalytics::ValueStreams::CreateService.new(
- current_user: admin,
- namespace: project.group,
- params: { name: "vs #{suffix}", stages: Gitlab::Analytics::CycleAnalytics::DefaultStages.all }
- ).execute
+ [project.project_namespace.reload, project.group].each do |parent|
+ Analytics::CycleAnalytics::ValueStreams::CreateService.new(
+ current_user: admin,
+ namespace: parent,
+ params: { name: "vs #{suffix}", stages: Gitlab::Analytics::CycleAnalytics::DefaultStages.all }
+ ).execute
+ end
end
def seed_dora_metrics!