Advance don't merge

This commit is contained in:
2023-12-12 10:05:13 +01:00
parent bc892bc157
commit 0e3b19fcd9
8 changed files with 74 additions and 7 deletions

9
chat/urls.py Normal file
View File

@ -0,0 +1,9 @@
from django.urls import path
from django.conf import settings
from django.conf.urls.static import static
from . import views
urlpatterns = [
path("<int:pk>", views.ChatView.as_view(), name="chat_page"),
]