fd05e26618
Closes #23150
9 lines
210 B
Ruby
9 lines
210 B
Ruby
class UserProjectAccessChangedService
|
|
def initialize(user_ids)
|
|
@user_ids = Array.wrap(user_ids)
|
|
end
|
|
|
|
def execute
|
|
AuthorizedProjectsWorker.bulk_perform_async(@user_ids.map { |id| [id] })
|
|
end
|
|
end
|