UnisKB/apps/chat/urls.py

16 lines
502 B
Python
Raw Normal View History

2025-05-30 12:02:39 +00:00
from django.urls import path
from . import views
app_name = 'chat'
urlpatterns = [
2025-06-17 03:58:35 +00:00
path('embed', views.ChatEmbedView.as_view()),
path('auth/anonymous', views.AnonymousAuthentication.as_view()),
path('profile', views.AuthProfile.as_view()),
path('application/profile', views.ApplicationProfile.as_view()),
2025-06-09 08:18:43 +00:00
path('chat_message/<str:chat_id>', views.ChatView.as_view()),
2025-06-17 07:01:59 +00:00
path('open', views.OpenView.as_view()),
path('captcha', views.CaptchaView.as_view(), name='captcha'),
2025-05-30 12:02:39 +00:00
]