feat: add user websocket channel (consumers+routing), drop USE_SQLITE branch

This commit is contained in:
chunyu
2026-09-04 12:47:19 +08:00
parent a1048de0fe
commit f53d6cd5b9
4 changed files with 96 additions and 25 deletions
+6
View File
@@ -0,0 +1,6 @@
from django.urls import re_path
from . import consumers
websocket_urlpatterns = [
re_path(r'ws/qr-status/(?P<token>[^/]+)/$', consumers.QRStatusConsumer.as_asgi()),
]