gitlab-org--gitlab-foss/lib/gitlab/github_import/label_formatter.rb
Douglas Barbosa Alexandre 05a4f444c3 Import labels from GitHub
2016-04-18 17:14:59 -03:00

23 lines
341 B
Ruby

module Gitlab
module GithubImport
class LabelFormatter < BaseFormatter
def attributes
{
project: project,
title: title,
color: color
}
end
private
def color
"##{raw_data.color}"
end
def title
raw_data.name
end
end
end
end