11 lines
322 B
Python
11 lines
322 B
Python
![]() |
from django.urls import path, include
|
||
|
from rest_framework.routers import DefaultRouter
|
||
|
from .views import TemplateViewSet, TemplateCategoryViewSet
|
||
|
|
||
|
router = DefaultRouter()
|
||
|
router.register(r'categories', TemplateCategoryViewSet)
|
||
|
router.register(r'', TemplateViewSet)
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('', include(router.urls)),
|
||
|
]
|