mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-27 02:52:48 +00:00
15 lines
517 B
Python
15 lines
517 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = 'chat'
|
|
|
|
urlpatterns = [
|
|
path('chat/embed', views.ChatEmbedView.as_view()),
|
|
path('application/anonymous_authentication', views.AnonymousAuthentication.as_view()),
|
|
path('auth/profile', views.AuthProfile.as_view()),
|
|
path('profile', views.ApplicationProfile.as_view()),
|
|
path('chat_message/<str:chat_id>', views.ChatView.as_view()),
|
|
path('workspace/<str:workspace_id>/application/<str:application_id>/open', views.OpenView.as_view())
|
|
]
|