11 lines
207 B
Ruby
Executable File
11 lines
207 B
Ruby
Executable File
class BillChannel < ApplicationCable::Channel
|
|
def subscribed
|
|
stream_from "bill_channel"
|
|
end
|
|
|
|
def unsubscribed
|
|
# Any cleanup needed when channel is unsubscribed
|
|
stop_all_streams
|
|
end
|
|
end
|