18 lines
505 B
Python
18 lines
505 B
Python
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(
|
|
"chat_group/<int:event_id>/", views.ChatGroupAPIView.as_view(), name="chat_group"
|
|
),
|
|
path(
|
|
"chat_messages/<str:event_name>/",
|
|
views.ChatMessageAPIView.as_view(),
|
|
name="chat_messages",
|
|
),
|
|
# path('team_check/<int:game_id>/', views.TeamCheckAPIView.as_view(), name='team_check'),
|
|
]
|