11 lines
313 B
Ruby
11 lines
313 B
Ruby
# 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
|