update excel warehouse
This commit is contained in:
12
apps/authorization/services/excel/urls.py
Normal file
12
apps/authorization/services/excel/urls.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from django.urls import path, include
|
||||
from rest_framework.routers import DefaultRouter
|
||||
|
||||
from apps.authorization.services.excel.excel_processing import AuthExcelViewSet
|
||||
|
||||
router = DefaultRouter()
|
||||
router.register(r'', AuthExcelViewSet, basename='user_relations_excel')
|
||||
|
||||
|
||||
urlpatterns = [
|
||||
path('', include(router.urls)),
|
||||
]
|
||||
Reference in New Issue
Block a user