ft_transcendence/chat/urls.py

11 lines
271 B
Python
Raw Normal View History

2023-12-12 04:05:13 -05:00
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"),
2023-12-15 14:32:43 -05:00
path("", views.ChatsView.as_view(), name="chats_page"),
2023-12-12 04:05:13 -05:00
]