2020-02-13 16:08:59 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module BackgroundMigration
|
|
|
|
# rubocop:disable Style/Documentation
|
|
|
|
class RecalculateProjectAuthorizations
|
|
|
|
def perform(user_ids)
|
2021-05-04 08:10:04 -04:00
|
|
|
# no-op
|
2020-02-13 16:08:59 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|