greenlight/app/channels/recording_updates_channel.rb

6 lines
154 B
Ruby

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