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:
Diffstat (limited to 'db/fixtures/development/13_comments.rb')
-rw-r--r--db/fixtures/development/13_comments.rb31
1 files changed, 0 insertions, 31 deletions
diff --git a/db/fixtures/development/13_comments.rb b/db/fixtures/development/13_comments.rb
deleted file mode 100644
index d37be53c7b9..00000000000
--- a/db/fixtures/development/13_comments.rb
+++ /dev/null
@@ -1,31 +0,0 @@
-Gitlab::Seeder.quiet do
- Issue.all.each do |issue|
- project = issue.project
-
- project.team.users.each do |user|
- note_params = {
- noteable_type: 'Issue',
- noteable_id: issue.id,
- note: Faker::Lorem.sentence,
- }
-
- Notes::CreateService.new(project, user, note_params).execute
- print '.'
- end
- end
-
- MergeRequest.all.each do |mr|
- project = mr.project
-
- project.team.users.each do |user|
- note_params = {
- noteable_type: 'MergeRequest',
- noteable_id: mr.id,
- note: Faker::Lorem.sentence,
- }
-
- Notes::CreateService.new(project, user, note_params).execute
- print '.'
- end
- end
-end