From 5db03a3c69b306b6b0b47122c473255a1cb49910 Mon Sep 17 00:00:00 2001 From: starnakin Date: Thu, 28 Dec 2023 15:20:25 +0100 Subject: [PATCH] tournament: fix --- tournament/routing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tournament/routing.py b/tournament/routing.py index eed3b1c..4434723 100644 --- a/tournament/routing.py +++ b/tournament/routing.py @@ -2,5 +2,5 @@ from django.urls import re_path from . import consumers websocket_urlpatterns = [ - re_path(r'ws/games/(?P\d+)$', consumers.GameWebSocket.as_asgi()) + re_path(r'ws/games/(?P\d+)$', consumers.TournamentWebConsumer.as_asgi()) ]