Files
sx-fc/app/channels/sound_effect_channel.rb
2018-08-06 17:52:03 +06:30

10 lines
219 B
Ruby

class SoundEffectChannel < ApplicationCable::Channel
def subscribed
stream_from "sound_effect_channel"
end
def unsubscribed
stop_all_streams
# Any cleanup needed when channel is unsubscribed
end
end