urls.py 1.2 KB

1234567891011121314151617181920212223242526272829
  1. """TestLaboratory URL Configuration
  2. The `urlpatterns` list routes URLs to views. For more information please see:
  3. https://docs.djangoproject.com/en/3.2/topics/http/urls/
  4. Examples:
  5. Function views
  6. 1. Add an import: from my_app import views
  7. 2. Add a URL to urlpatterns: path('', views.home, name='home')
  8. Class-based views
  9. 1. Add an import: from other_app.views import Home
  10. 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
  11. Including another URLconf
  12. 1. Import the include() function: from django.urls import include, path
  13. 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
  14. """
  15. from django.conf.urls.static import static
  16. from django.urls import path, include
  17. from TestLaboratory import settings
  18. urlpatterns = [
  19. path('api/v1/users/', include('user.urls')),
  20. path('api/v1/software/', include('software.urls')),
  21. path('api/v1/test-plans/', include('plan.urls')),
  22. path('api/v1/test-tasks/', include('task.urls')),
  23. path('api/v1/log-info/', include('log.urls')),
  24. path('api/v1/files/', include('file.urls')),
  25. path('api/v1/group/', include('group.urls'))
  26. ] + static(settings.STATIC_URL, document_root=settings.STATICFILES_DIRS)