MaxKB/apps/chat/urls.py
2025-06-24 17:44:59 +08:00

26 lines
1.2 KiB
Python

from django.urls import path
from . import views
app_name = 'chat'
urlpatterns = [
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()),
path('chat_message/<str:chat_id>', views.ChatView.as_view()),
path('open', views.OpenView.as_view()),
path('captcha', views.CaptchaView.as_view(), name='captcha'),
path('vote/chat/<str:chat_id>/chat_record/<str:chat_record_id>', views.VoteView.as_view(), name='vote'),
path('historical_conversation', views.HistoricalConversationView.as_view(), name='historical_conversation'),
path('historical_conversation/<int:current_page>/<int:page_size>',
views.HistoricalConversationView.PageView.as_view(),
name='historical_conversation'),
path('historical_conversation_record/<str:chat_id>', views.HistoricalConversationRecordView.as_view(),
name='historical_conversation_record'),
path('historical_conversation_record/<str:chat_id>/<int:current_page>/<int:page_size>',
views.HistoricalConversationRecordView.PageView.as_view(),
name='historical_conversation_record')
]