first base of project-changed apps: Herd-livestock-tag-log-elasticsearch-

This commit is contained in:
2025-05-24 15:01:55 +03:30
parent eab40af15d
commit 90a46e493c
129 changed files with 3844 additions and 187 deletions

View File

@@ -16,10 +16,18 @@ Including another URLconf
"""
from django.contrib import admin
from django.urls import path, include
from apps.core.swagger import schema_view
urlpatterns = [
path('admin/', admin.site.urls),
path('api-auth/', include('rest_framework.urls', namespace='rest_framework')),
path('auth/', include('apps.authentication.urls')),
path('auth/', include('apps.authorization.urls')),
path('', include('apps.captcha_app.api.v1.urls')),
path('', include('apps.core.urls')),
path('herd/', include('apps.herd.urls')),
path('livestock/', include('apps.livestock.urls')),
path('tag/', include('apps.tag.urls')),
path('search/', include('apps.search.urls')),
path('swagger/', schema_view.with_ui('swagger', cache_timeout=0), name='schema-swagger-ui'),
]