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

15 lines
326 B
Ruby

class TypingNotificationsChannel < RoomChannel
def start(data)
broadcast_to @room, action: :start, user: current_user_attributes
end
def stop(data)
broadcast_to @room, action: :stop, user: current_user_attributes
end
private
def current_user_attributes
current_user.slice(:id, :name)
end
end