Files
goodtimes/chat/api/urls.py

18 lines
505 B
Python
Raw Normal View History

2024-02-29 13:25:50 +05:30
from django.urls import path
from . import views
app_name = "chat_api"
urlpatterns = [
path("<str:room_name>/", views.EnterRoomApi.as_view(), name="enter_room"),
path(
2024-03-10 17:17:08 +05:30
"chat_group/<int:event_id>/", views.ChatGroupAPIView.as_view(), name="chat_group"
2024-02-29 13:25:50 +05:30
),
path(
2024-03-10 17:17:08 +05:30
"chat_messages/<str:event_name>/",
2024-02-29 13:25:50 +05:30
views.ChatMessageAPIView.as_view(),
name="chat_messages",
),
# path('team_check/<int:game_id>/', views.TeamCheckAPIView.as_view(), name='team_check'),
]