disable http auth for websockets

This commit is contained in:
j3d1 2023-11-22 22:37:56 +01:00
parent c88d434f39
commit e45a1f271e
4 changed files with 22 additions and 5 deletions

View file

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