2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-08-18 06:49:51 -07:00
|
|
|
class TimelineChannel < ApplicationCable::Channel
|
|
|
|
def subscribed
|
2016-09-04 10:22:27 -07:00
|
|
|
stream_from "timeline:#{current_user.account_id}"
|
2016-08-18 06:49:51 -07:00
|
|
|
end
|
|
|
|
end
|