12 lines
231 B
Ruby
12 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
|