2020-02-15 18:32:13 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module BackgroundMigration
|
|
|
|
# rubocop:disable Style/Documentation
|
|
|
|
class RecalculateProjectAuthorizations
|
|
|
|
def perform(user_ids)
|
2021-06-08 01:23:25 +05:30
|
|
|
# no-op
|
2020-02-15 18:32:13 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|