summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/migrate_job_artifact_registry_to_ssf.rb
blob: bcc02c1dbf2549ca1d5a7b5a749ebe654828a8be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    # rubocop: disable Style/Documentation
    class MigrateJobArtifactRegistryToSsf
      def perform(*job_artifact_ids)
      end
    end
  end
end

Gitlab::BackgroundMigration::MigrateJobArtifactRegistryToSsf.prepend_mod_with('Gitlab::BackgroundMigration::MigrateJobArtifactRegistryToSsf')