10 lines
169 B
Ruby
10 lines
169 B
Ruby
class CheckInBookingJob < ApplicationJob
|
|
queue_as :default
|
|
|
|
def perform(table)
|
|
ActionCable.server.broadcast "check_in_booking_channel",table: table
|
|
end
|
|
end
|
|
|
|
|