search & eval reprocess

This commit is contained in:
2023-10-28 18:34:33 +02:00
parent a1e2f9d8c4
commit 383d256ea9
8 changed files with 97 additions and 17 deletions

View File

@@ -5,3 +5,9 @@ from rest_framework import routers
router = routers.DefaultRouter()
router.register(r'users', views.UserViewSet)
router.register(r'groups', views.GroupViewSet)
urlpatterns = [
path('', include(router.urls)),
path('types/search', views.custom_types_search, name='custom_types_search'),
path('reprocess/eval', views.reprocess_eval, name='custom_types_search'),
]