2016-11-16 00:56:29 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-08-18 22:49:51 +09:00
|
|
|
class TimelineChannel < ApplicationCable::Channel
|
|
|
|
def subscribed
|
2016-09-05 02:22:27 +09:00
|
|
|
stream_from "timeline:#{current_user.account_id}"
|
2016-08-18 22:49:51 +09:00
|
|
|
end
|
|
|
|
end
|