2024-11-03 08:31:58 +00:00
|
|
|
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
|
2024-11-03 09:25:50 +01:00
|
|
|
module Guests
|
|
|
|
class UpdateUseCase
|
|
|
|
def initialize(guest_ids:, params:)
|
|
|
|
Guest.where(id: guest_ids).update!(params)
|
|
|
|
|
|
|
|
# TODO: Not all status transitions may require a table re-arrangement
|
|
|
|
TablesArrangement.delete_all
|
|
|
|
|
|
|
|
ActiveJob.perform_all_later(50.times.map { TableSimulatorJob.new })
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|