mastodon/app/channels/timeline_channel.rb

6 lines
131 B
Ruby
Raw Normal View History

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