2012-11-13 15:11:56 -05:00
|
|
|
Gitlab::Seeder.quiet do
|
|
|
|
(1..300).each do |i|
|
|
|
|
# Random Project
|
2012-12-26 22:14:05 -05:00
|
|
|
project = Project.all.sample
|
2012-10-30 04:03:21 -04:00
|
|
|
|
2012-11-13 15:11:56 -05:00
|
|
|
# Random user
|
2013-12-25 02:56:39 -05:00
|
|
|
user = project.team.users.sample
|
2012-12-26 22:14:05 -05:00
|
|
|
|
|
|
|
next unless user
|
|
|
|
|
2012-11-13 15:11:56 -05:00
|
|
|
user_id = user.id
|
2012-10-30 04:03:21 -04:00
|
|
|
|
2014-03-15 05:39:35 -04:00
|
|
|
Gitlab::Seeder.by_user(user) do
|
2013-10-04 15:11:50 -04:00
|
|
|
Issue.seed(:id, [{
|
|
|
|
id: i,
|
|
|
|
project_id: project.id,
|
|
|
|
author_id: user_id,
|
|
|
|
assignee_id: user_id,
|
|
|
|
state: ['opened', 'closed'].sample,
|
|
|
|
milestone: project.milestones.sample,
|
2013-10-17 05:27:09 -04:00
|
|
|
title: Faker::Lorem.sentence(6),
|
|
|
|
description: Faker::Lorem.sentence
|
2013-10-04 15:11:50 -04:00
|
|
|
}])
|
|
|
|
end
|
2012-11-13 15:11:56 -05:00
|
|
|
print('.')
|
|
|
|
end
|
2013-08-26 06:20:45 -04:00
|
|
|
|
|
|
|
Issue.all.map do |issue|
|
|
|
|
issue.set_iid
|
|
|
|
issue.save
|
|
|
|
end
|
2012-10-30 04:03:21 -04:00
|
|
|
end
|