debian-mirror-gitlab/lib/bulk_imports/groups/loaders/labels_loader.rb
2021-03-11 19:13:27 +05:30

15 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