36 lines
914 B
Ruby
36 lines
914 B
Ruby
module Boards
|
|
module Lists
|
|
class GenerateService < Boards::BaseService
|
|
def execute
|
|
return false unless board.lists.movable.empty?
|
|
|
|
List.transaction do
|
|
label_params.each { |params| create_list(params) }
|
|
end
|
|
|
|
true
|
|
end
|
|
|
|
private
|
|
|
|
def create_list(params)
|
|
label = find_or_create_label(params)
|
|
Lists::CreateService.new(project, current_user, label_id: label.id).execute
|
|
end
|
|
|
|
def find_or_create_label(params)
|
|
project.labels.create_with(color: params[:color])
|
|
.find_or_create_by(name: params[:name])
|
|
end
|
|
|
|
def label_params
|
|
[
|
|
{ name: 'Development', color: '#5CB85C' },
|
|
{ name: 'Testing', color: '#F0AD4E' },
|
|
{ name: 'Production', color: '#FF5F00' },
|
|
{ name: 'Ready', color: '#FF0000' }
|
|
]
|
|
end
|
|
end
|
|
end
|
|
end
|