metamaps--metamaps/app/channels/topic_channel.rb
2016-12-19 09:55:24 -05:00

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