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