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

backfill_workspace_personal_access_token.rb « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f71759dc8ddbfbed66c5081faf829ee88bf29bf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    # No op on ce
    class BackfillWorkspacePersonalAccessToken < BatchedMigrationJob
      feature_category :remote_development
      def perform; end
    end
  end
end

Gitlab::BackgroundMigration::BackfillWorkspacePersonalAccessToken.prepend_mod_with('Gitlab::BackgroundMigration::BackfillWorkspacePersonalAccessToken') # rubocop:disable Layout/LineLength