Files
sx-fc/app/jobs/checkin_job.rb
2017-12-13 15:58:44 +06:30

11 lines
193 B
Ruby

class CheckinJob < ApplicationJob
queue_as :default
def perform()
table = DiningFacility.get_checkin_booking
ActionCable.server.broadcast "checkin_channel",table: table
end
end