Files
once-campfire/app/channels/unread_rooms_channel.rb
Kevin McConnell df76a227dc Hello world
First open source release of Campfire 🎉
2025-08-21 09:31:59 +01:00

6 lines
111 B
Ruby

class UnreadRoomsChannel < ApplicationCable::Channel
def subscribed
stream_from "unread_rooms"
end
end