summaryrefslogtreecommitdiffstats
path: root/chat_api/urls.py
diff options
context:
space:
mode:
authorjdlugosz963 <jdlugosz963@gmail.com>2021-11-26 18:44:38 +0100
committerjdlugosz963 <jdlugosz963@gmail.com>2021-11-26 18:44:38 +0100
commiteaf89ff64ce5c4e39239aec50a973d1c58a40bee (patch)
tree161c53033c08f9f0bb499dd3c1f394a0f508cf4e /chat_api/urls.py
parent45daed0c4fd60febf9458c889f7a89c0e5ab70bd (diff)
downloadlom_api-eaf89ff64ce5c4e39239aec50a973d1c58a40bee.tar.gz
lom_api-eaf89ff64ce5c4e39239aec50a973d1c58a40bee.zip
add groups views
Diffstat (limited to 'chat_api/urls.py')
-rw-r--r--chat_api/urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/chat_api/urls.py b/chat_api/urls.py
index d2d839f..9fa6016 100644
--- a/chat_api/urls.py
+++ b/chat_api/urls.py
@@ -1,5 +1,6 @@
1from django.urls import path 1from django.urls import path
2from .views import GroupView
2 3
3urlpatterns = [ 4urlpatterns = [
4 5 path('groups/', GroupView.as_view(), '')
5] 6]