diff --git a/games/routing.py b/games/routing.py index 7271972..eed3b1c 100644 --- a/games/routing.py +++ b/games/routing.py @@ -2,5 +2,5 @@ from django.urls import re_path from . import consumers websocket_urlpatterns = [ - re_path(r'ws/tournaments/(?P\d+)$', consumers.TournamentWebConsumer.as_asgi()) + re_path(r'ws/games/(?P\d+)$', consumers.GameWebSocket.as_asgi()) ]