summaryrefslogtreecommitdiffstats
path: root/chat_api/urls.py
blob: a860b5d8241f91347cd0afd97f2e3e8dd3c1de2c (plain)
1
2
3
4
5
6
7
8
from django.urls import path
from .views import *

urlpatterns = [
    path('groups/', GroupView.as_view(), name='groups_list'),
    path('groups/detail/<int:pk>/', GroupDetailView.as_view(), name='groups_detail'),
    path('groups/detail/<int:pk>/messages/', GmsView.as_view(), name='group_messages'),
]