Welcome to mirror list, hosted at ThFree Co, Russian Federation.

labels_loader.rb « loaders « groups « bulk_imports « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b8c9ba9609c8fe3a9c98112a8e30fa9c17e7bdcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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