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

15 lines
243 B
Ruby

class RoomChannel < ApplicationCable::Channel
def subscribed
if @room = find_room
stream_for @room
else
reject
end
end
private
def find_room
current_user.rooms.find_by(id: params[:room_id])
end
end