7 lines
219 B
Python
7 lines
219 B
Python
from django.urls import re_path
|
|
from . import consumers
|
|
|
|
websocket_urlpatterns = [
|
|
# ws://localhost:8000/ws/ticket/<int:ticket_id>/
|
|
re_path(r'ws/ticket/(?P<ticket_id>\d+)/$', consumers.ChatConsumer.as_asgi()),
|
|
] |