gitlab-org--gitlab-foss/lib/gitlab/github_import/label_formatter.rb

24 lines
341 B
Ruby
Raw Normal View History

2016-04-18 02:52:34 +00:00
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