chinwagsocial/app/channels/timeline_channel.rb

6 lines
131 B
Ruby
Raw Normal View History

2016-08-18 23:49:51 +10:00
class TimelineChannel < ApplicationCable::Channel
def subscribed
stream_from "timeline:#{current_user.account_id}"
2016-08-18 23:49:51 +10:00
end
end