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

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

module Gitlab
  module BackgroundMigration
    # rubocop: disable Style/Documentation
    class ReExpireOAuthTokens < Gitlab::BackgroundMigration::ExpireOAuthTokens # rubocop:disable Migration/BackgroundMigrationBaseClass
    end
    # rubocop: enable Style/Documentation
  end
end