debian-mirror-gitlab/lib/gitlab/background_migration/update_authorized_keys_file_since.rb
2020-03-09 13:42:32 +05:30

13 lines
360 B
Ruby

# frozen_string_literal: true
module Gitlab
module BackgroundMigration
# rubocop: disable Style/Documentation
class UpdateAuthorizedKeysFileSince
def perform(cutoff_datetime)
end
end
end
end
Gitlab::BackgroundMigration::UpdateAuthorizedKeysFileSince.prepend_if_ee('EE::Gitlab::BackgroundMigration::UpdateAuthorizedKeysFileSince')