This commit is contained in:
Mateusz Gruszczyński
2025-07-06 10:49:45 +02:00
parent 5ea203cbe1
commit 7b0975158e
4 changed files with 322 additions and 0 deletions

1
app.py
View File

@ -839,6 +839,7 @@ def handle_join(data):
username = data.get('username', 'Gość')
join_room(room)
emit('user_joined', {'username': username}, to=room)
emit('joined_confirmation', {'room': room})
@socketio.on('add_item')
def handle_add_item(data):