mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-09 12:46:07 +10:00
Add description to issues, projects in development fixtures
This commit is contained in:
@@ -26,6 +26,7 @@ project_urls.each_with_index do |url, i|
|
||||
name: group_path.titleize,
|
||||
path: group_path
|
||||
)
|
||||
group.description = Faker::Lorem.sentence
|
||||
group.owner = User.first
|
||||
group.save
|
||||
end
|
||||
@@ -35,7 +36,8 @@ project_urls.each_with_index do |url, i|
|
||||
params = {
|
||||
import_url: url,
|
||||
namespace_id: group.id,
|
||||
name: project_path.titleize
|
||||
name: project_path.titleize,
|
||||
description: Faker::Lorem.sentence
|
||||
}
|
||||
|
||||
project = Projects::CreateContext.new(User.first, params).execute
|
||||
|
||||
@@ -22,7 +22,8 @@ Gitlab::Seeder.quiet do
|
||||
assignee_id: user_id,
|
||||
state: ['opened', 'closed'].sample,
|
||||
milestone: project.milestones.sample,
|
||||
title: Faker::Lorem.sentence(6)
|
||||
title: Faker::Lorem.sentence(6),
|
||||
description: Faker::Lorem.sentence
|
||||
}])
|
||||
ensure
|
||||
Thread.current[:current_user] = nil
|
||||
|
||||
Reference in New Issue
Block a user