|
1 | | -"""medium URL Configuration |
2 | | -
|
3 | | -The `urlpatterns` list routes URLs to views. For more information please see: |
4 | | - https://docs.djangoproject.com/en/3.1/topics/http/urls/ |
5 | | -Examples: |
6 | | -Function views |
7 | | - 1. Add an import: from my_app import views |
8 | | - 2. Add a URL to urlpatterns: path('', views.home, name='home') |
9 | | -Class-based views |
10 | | - 1. Add an import: from other_app.views import Home |
11 | | - 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') |
12 | | -Including another URLconf |
13 | | - 1. Import the include() function: from django.urls import include, path |
14 | | - 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) |
15 | | -""" |
16 | 1 | from django.contrib import admin |
17 | | -from django.urls import path |
| 2 | +from django.conf.urls import url, include |
| 3 | +from reviews.views import ProductViewSet |
| 4 | +from rest_framework.routers import DefaultRouter |
| 5 | + |
| 6 | +router = DefaultRouter() |
| 7 | +router.register(r'product', ProductViewSet, basename='Product') |
18 | 8 |
|
19 | 9 | urlpatterns = [ |
20 | | - path('admin/', admin.site.urls), |
| 10 | + url(r'^admin/', admin.site.urls), |
| 11 | + url(r'^', include(router.urls)), |
21 | 12 | ] |
| 13 | + |
0 commit comments