Use LabelsFinder on Fogbuz importer

This commit is contained in:
Douglas Barbosa Alexandre 2016-10-19 17:28:14 -02:00
parent 97762a5858
commit edef2d15f9
1 changed files with 2 additions and 1 deletions

View File

@ -133,7 +133,8 @@ module Gitlab
updated_at: DateTime.parse(bug['dtLastUpdated'])
)
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