8 lines
200 B
Ruby
8 lines
200 B
Ruby
|
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
|