gitlab-org--gitlab-foss/lib/gitlab/background_migration/recalculate_project_authori...

13 lines
231 B
Ruby

# frozen_string_literal: true
module Gitlab
module BackgroundMigration
# rubocop:disable Style/Documentation
class RecalculateProjectAuthorizations
def perform(user_ids)
# no-op
end
end
end
end