8 lines
154 B
Ruby
Executable File
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
|