mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-12-25 07:23:43 +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
|