independant sde app

This commit is contained in:
2023-10-28 13:32:04 +02:00
parent 24a1cd051a
commit 3615689704
20 changed files with 127 additions and 154 deletions

7
api/urls.py Normal file
View File

@@ -0,0 +1,7 @@
from . import views
from django.urls import include, path
from rest_framework import routers
router = routers.DefaultRouter()
router.register(r'users', views.UserViewSet)
router.register(r'groups', views.GroupViewSet)