mastodon/app/channels/timeline_channel.rb

8 lines
162 B
Ruby
Raw Normal View History

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