Updates
This commit is contained in:
9
ETB-API/collaboration_war_rooms/routing.py
Normal file
9
ETB-API/collaboration_war_rooms/routing.py
Normal file
@@ -0,0 +1,9 @@
|
||||
"""
|
||||
WebSocket routing configuration for collaboration_war_rooms
|
||||
"""
|
||||
from django.urls import re_path
|
||||
from . import consumers
|
||||
|
||||
websocket_urlpatterns = [
|
||||
re_path(r'ws/chat/(?P<room_id>[0-9a-f-]+)/$', consumers.ChatConsumer.as_asgi()),
|
||||
]
|
||||
Reference in New Issue
Block a user