metamaps--metamaps/app/channels/map_channel.rb
2016-12-31 06:15:55 +00:00

8 lines
No EOL
225 B
Ruby

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