mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-12-26 03:13:41 +01:00
5 lines
131 B
Ruby
5 lines
131 B
Ruby
class TimelineChannel < ApplicationCable::Channel
|
|
def subscribed
|
|
stream_from "timeline:#{current_user.account_id}"
|
|
end
|
|
end
|