Files
sx-fc/app/jobs/bill_broadcast_job.rb
2017-10-23 11:38:10 +06:30

8 lines
154 B
Ruby
Executable File

class BillBroadcastJob < ApplicationJob
queue_as :default
def perform(table)
ActionCable.server.broadcast "bill_channel",table: table
end
end