debian-mirror-gitlab/lib/gitlab/background_migration/recalculate_project_authorizations.rb
2021-06-08 01:23:25 +05:30

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