Files
sx-fc/app/jobs/checkin_job.rb
2017-12-14 17:39:39 +06:30

13 lines
227 B
Ruby

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