2016-08-18 15:49:51 +02: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 19:22:27 +02:00
|
|
|
stream_from "timeline:#{current_user.account_id}"
|
2016-08-18 15:49:51 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def unsubscribed
|
|
|
|
# Any cleanup needed when channel is unsubscribed
|
|
|
|
end
|
|
|
|
end
|