Welcome to mirror list, hosted at ThFree Co, Russian Federation.

09_issues.rb « development « fixtures « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 635878622d0d5be25e41aa9a70517fd1561b0ee6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Gitlab::Seeder.quiet do
  (1..300).each  do |i|
    # Random Project
    project = Project.all.sample

    # Random user
    user = project.team.users.sample

    next unless user

    user_id = user.id

    Gitlab::Seeder.by_user(user) do
      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,
        title: Faker::Lorem.sentence(6),
        description: Faker::Lorem.sentence
      }])
    end
    print('.')
  end

  Issue.all.map do |issue|
    issue.set_iid
    issue.save
  end
end