Files
sx-fc/app/jobs/check_in_booking_job.rb
2017-12-14 17:10:05 +06:30

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