1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-29 07:18:54 +09:00
YuruToot/app/channels/timeline_channel.rb

8 lines
162 B
Ruby
Raw Normal View History

# frozen_string_literal: true
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