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