summaryrefslogtreecommitdiff
path: root/lib/gitlab/github_import/importer/attachments/releases_importer.rb
blob: feaa69eff713b3d3f556d0b2d57ed1c74abb8f21 (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
26
27
28
29
30
31
32
33
# frozen_string_literal: true

module Gitlab
  module GithubImport
    module Importer
      module Attachments
        class ReleasesImporter < ::Gitlab::GithubImport::Importer::Attachments::BaseImporter
          def sidekiq_worker_class
            ::Gitlab::GithubImport::Attachments::ImportReleaseWorker
          end

          def collection_method
            :release_attachments
          end

          def object_type
            :release_attachment
          end

          def id_for_already_imported_cache(release)
            release.id
          end

          private

          def collection
            project.releases.select(:id, :description)
          end
        end
      end
    end
  end
end