The code powering m.abunchtell.com https://m.abunchtell.com
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

timeline_channel.rb 162 B

1234567
  1. # frozen_string_literal: true
  2. class TimelineChannel < ApplicationCable::Channel
  3. def subscribed
  4. stream_from "timeline:#{current_user.account_id}"
  5. end
  6. end