wblog/app/channels/comment_channel.rb

7 lines
253 B
Ruby

# Be sure to restart your server when you modify this file. Action Cable runs in a loop that does not support auto reloading.
class CommentChannel < ApplicationCable::Channel
def subscribed
stream_from "comment_post_#{params[:post_id]}"
end
end