summaryrefslogtreecommitdiff
path: root/app/workers/gitlab/github_import/import_lfs_object_worker.rb
blob: 520c5cb091abcc7f01e307939fc24192034e3e59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

module Gitlab
  module GithubImport
    class ImportLfsObjectWorker
      include ObjectImporter

      def representation_class
        Representation::LfsObject
      end

      def importer_class
        Importer::LfsObjectImporter
      end

      def counter_name
        :github_importer_imported_lfs_objects
      end

      def counter_description
        'The number of imported GitHub Lfs Objects'
      end
    end
  end
end