13 lines
397 B
Python
13 lines
397 B
Python
from django.urls import path, include
|
|
from rest_framework.routers import DefaultRouter
|
|
|
|
from .views import CmsInstitutionViewSet, CmsDepartmentViewSet
|
|
|
|
router = DefaultRouter()
|
|
router.register(r'institutions', CmsInstitutionViewSet, basename='cms-institution')
|
|
router.register(r'departments', CmsDepartmentViewSet, basename='cms-department')
|
|
|
|
urlpatterns = [
|
|
path('', include(router.urls)),
|
|
]
|