mirror of
https://github.com/basecamp/once-campfire.git
synced 2026-09-19 06:44:59 +09:00
df76a227dc
First open source release of Campfire 🎉
6 lines
111 B
Ruby
6 lines
111 B
Ruby
class UnreadRoomsChannel < ApplicationCable::Channel
|
|
def subscribed
|
|
stream_from "unread_rooms"
|
|
end
|
|
end
|