greenlight/app/channels/recording_updates_channel.rb
2016-11-09 13:29:29 -05:00

6 lines
154 B
Ruby

class RecordingUpdatesChannel < ApplicationCable::Channel
def subscribed
stream_from "#{params[:encrypted_id]}_recording_updates_channel"
end
end