2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-08-18 13:49:51 +00:00
|
|
|
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
|
|
|
|
end
|