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

module Gitlab
  module GithubImport
    class ImportIssueEventWorker # rubocop:disable Scalability/IdempotentWorker
      include ObjectImporter

      def representation_class
        Representation::IssueEvent
      end

      def importer_class
        Importer::IssueEventImporter
      end

      def object_type
        :issue_event
      end
    end
  end
end