Expanded chat backend with message reply, edit, delete, and reaction support in consumers and models. Updated routing to use chat_id. Added chat-related view stubs. On the frontend, introduced ChatLayout and ChatPage scaffolding, and routed protected routes through ChatLayout.
8 lines
181 B
Python
8 lines
181 B
Python
# chat/routing.py
|
|
from django.urls import re_path
|
|
|
|
from . import consumers
|
|
|
|
websocket_urlpatterns = [
|
|
re_path(r"ws/chat/(?P<chat_id>\w+)/$", consumers.ChatConsumer.as_asgi()),
|
|
] |