2016-08-18 13:49:51 +00:00
|
|
|
# Be sure to restart your server when you modify this file. Action Cable runs in a loop that does not support auto reloading.
|
|
|
|
class TimelineChannel < ApplicationCable::Channel
|
|
|
|
def subscribed
|
2016-09-04 17:22:27 +00:00
|
|
|
stream_from "timeline:#{current_user.account_id}"
|
2016-08-18 13:49:51 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def unsubscribed
|
|
|
|
# Any cleanup needed when channel is unsubscribed
|
|
|
|
end
|
|
|
|
end
|