count-anything/app/channels/count_channel.rb
Louis Vallat 1ab28933e7
feat: added navbar
Signed-off-by: Louis Vallat <louis@louis-vallat.xyz>
2023-02-04 14:22:05 +01:00

10 lines
187 B
Ruby

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