11 lines
226 B
Ruby
11 lines
226 B
Ruby
class CheckInBookingChannel < ApplicationCable::Channel
|
|
def subscribed
|
|
stream_from "check_in_booking_channel"
|
|
end
|
|
|
|
def unsubscribed
|
|
stop_all_streams
|
|
# Any cleanup needed when channel is unsubscribed
|
|
end
|
|
end
|