urls.py 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. """VSeesResourceWeb 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 import url
  16. from django.contrib import admin
  17. from django.urls import path, include
  18. from rest_framework import routers
  19. from background.views import ProductInfoSet, VideoInfoSet, QuickStartInfoSet, UpgradeFirmwareInfoSet, GetUploadUrlView
  20. router = routers.DefaultRouter()
  21. router.register(r'productInfo', ProductInfoSet)
  22. router.register(r'videoInfo', VideoInfoSet)
  23. router.register(r'quickStartInfo', QuickStartInfoSet)
  24. router.register(r'upgradeFirmwareInfo', UpgradeFirmwareInfoSet)
  25. urlpatterns = [
  26. # path('admin/', admin.site.urls),
  27. path('getUploadUrl/', GetUploadUrlView.as_view()),
  28. url(r'^', include(router.urls)),
  29. ]