2016-08-18 09:49:51 -04:00
|
|
|
class TimelineChannel < ApplicationCable::Channel
|
|
|
|
def subscribed
|
2016-09-04 13:22:27 -04:00
|
|
|
stream_from "timeline:#{current_user.account_id}"
|
2016-08-18 09:49:51 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def unsubscribed
|
|
|
|
# Any cleanup needed when channel is unsubscribed
|
|
|
|
end
|
|
|
|
end
|