class TopicChannel < ApplicationCable::Channel # Called when the consumer has successfully # become a subscriber of this channel. def subscribed stream_from "topic_#{params[:id]}" end end