19 lines
		
	
	
		
			991 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			991 B
		
	
	
	
		
			Python
		
	
	
	
| from django.db.models import base
 | |
| from django.urls import path, include
 | |
| from rest_framework import routers
 | |
| from .views import CMAViewSet, CNASViewSet, CorrectViewSet, QualificationViewSet,InspectionViewSet,QualificationotherViewSet, QueryRecordListViewSet, correct_ability, merge_cma, merge_cnas
 | |
| 
 | |
| router = routers.DefaultRouter()
 | |
| router.register('cma', CMAViewSet, basename="cma")
 | |
| router.register('cnas', CNASViewSet, basename="cnas")
 | |
| router.register('qualification', QualificationViewSet, basename="qualification")
 | |
| router.register('qualificationother', QualificationotherViewSet, basename="qualificationother")
 | |
| router.register('inspection', InspectionViewSet, basename="inspection")
 | |
| router.register('queryrecord', QueryRecordListViewSet, basename="queryrecord")
 | |
| router.register('correct', CorrectViewSet, basename="correct")
 | |
| urlpatterns = [
 | |
|     path('merge/cma/', merge_cma),
 | |
|     path('merge/cnas/', merge_cnas),
 | |
|     # path('correct/', correct_ability),
 | |
|     path('', include(router.urls))
 | |
| ] |