Use LabelsFinder on Google Code importer
This commit is contained in:
parent
1d8b74fee3
commit
97762a5858
|
|
@ -101,7 +101,8 @@ module Gitlab
|
|||
state: raw_issue['state'] == 'closed' ? 'closed' : 'opened'
|
||||
)
|
||||
|
||||
issue.update_attribute(:label_ids, project.labels.where(title: labels).pluck(:id))
|
||||
issue_labels = ::LabelsFinder.new(project.owner, project_id: project.id, title: labels).execute
|
||||
issue.update_attribute(:label_ids, issue_labels.pluck(:id))
|
||||
|
||||
import_issue_comments(issue, comments)
|
||||
end
|
||||
|
|
|
|||
Loading…
Reference in New Issue