temporary fix for websockets

This commit is contained in:
j3d1 2023-11-22 23:55:00 +01:00
parent e45a1f271e
commit e43d4837c3
7 changed files with 63 additions and 17 deletions

View file

@ -3,6 +3,6 @@ from django.urls import path
from .consumers import NotifyConsumer
websocket_urlpatterns = [
path('ws/notify/<str:event_slug>/', NotifyConsumer.as_asgi()),
path('ws/notify/', NotifyConsumer.as_asgi()),
]