16 lines
286 B
Ruby
16 lines
286 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module BulkImports
|
||
|
module Groups
|
||
|
module Loaders
|
||
|
class LabelsLoader
|
||
|
def initialize(*); end
|
||
|
|
||
|
def load(context, data)
|
||
|
Labels::CreateService.new(data).execute(group: context.group)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|