debian-mirror-gitlab/db/fixtures/development/13_comments.rb
2015-09-11 14:41:01 +05:30

32 lines
682 B
Ruby

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: FFaker::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: FFaker::Lorem.sentence,
}
Notes::CreateService.new(project, user, note_params).execute
print '.'
end
end
end