count-anything/app/channels/count_channel.rb

10 lines
187 B
Ruby
Raw Normal View History

class CountChannel < ApplicationCable::Channel
def subscribed
# stream_from "some_channel"
end
def unsubscribed
# Any cleanup needed when channel is unsubscribed
end
end