From bd535ff670d6d15e1ce62db7b6028a2856cf6825 Mon Sep 17 00:00:00 2001 From: starnakin Date: Mon, 8 Jan 2024 13:09:29 +0100 Subject: [PATCH] game: fix: game url --- games/routing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()) ]