mirror of
https://github.com/basecamp/once-campfire.git
synced 2026-09-16 13:32:05 +09:00
df76a227dc
First open source release of Campfire 🎉
6 lines
126 B
Ruby
6 lines
126 B
Ruby
class ReadRoomsChannel < ApplicationCable::Channel
|
|
def subscribed
|
|
stream_from "user_#{current_user.id}_reads"
|
|
end
|
|
end
|