metamaps--metamaps/app/channels/map_channel.rb

8 lines
225 B
Ruby
Raw Normal View History

2016-12-29 05:52:00 +00:00
class MapChannel < ApplicationCable::Channel
# Called when the consumer has successfully
# become a subscriber of this channel.
def subscribed
2016-12-31 06:15:55 +00:00
# TODO: verify permission
2016-12-29 05:52:00 +00:00
stream_from "map_#{params[:id]}"
end
end