daphne added to dependencies; still reliant on uvicorn, as the former is now used solely as a channels testing req'ment; new consumer model in apps.epic.consumers to handle _gatekeeper partial functionality, permitting access to room once token costs met; new .routing urlpattern to accomodate; new tests.integrated.test_consumer IT cases ensure this functionality

This commit is contained in:
Disco DeDisco
2026-03-16 18:44:06 -04:00
parent 462155f07b
commit c9defa5a81
5 changed files with 65 additions and 2 deletions

View File

@@ -1 +1,8 @@
websocket_urlpatterns = []
from django.urls import path
from . import consumers
websocket_urlpatterns = [
path('ws/room/<slug:room_slug>/', consumers.RoomConsumer.as_asgi()),
]