|
@@ -20,7 +20,7 @@ from .views import CacheManagementView, CacheStatsView
|
|
|
urlpatterns = [
|
|
urlpatterns = [
|
|
|
# Existing endpoints
|
|
# Existing endpoints
|
|
|
path('extract/', ExtractProductAttributesView.as_view(), name='extract-attributes'),
|
|
path('extract/', ExtractProductAttributesView.as_view(), name='extract-attributes'),
|
|
|
- path('batch-extract/', BatchExtractProductAttributesView.as_view(), name='batch-extract-attributes'),
|
|
|
|
|
|
|
+ path('batch-extract-actual/', BatchExtractProductAttributesView.as_view(), name='batch-extract-attributes'),
|
|
|
path('products/', ProductListView.as_view(), name='product-list'),
|
|
path('products/', ProductListView.as_view(), name='product-list'),
|
|
|
path('products/upload-excel/', ProductUploadExcelView.as_view(), name='product-upload-excel'),
|
|
path('products/upload-excel/', ProductUploadExcelView.as_view(), name='product-upload-excel'),
|
|
|
path('products/upload-attributes/', ProductAttributesUploadView.as_view(), name='product-upload-attributes'),
|
|
path('products/upload-attributes/', ProductAttributesUploadView.as_view(), name='product-upload-attributes'),
|
|
@@ -38,7 +38,7 @@ urlpatterns = [
|
|
|
path('cache/management/', CacheManagementView.as_view(), name='cache-management'),
|
|
path('cache/management/', CacheManagementView.as_view(), name='cache-management'),
|
|
|
path('cache/stats/', CacheStatsView.as_view(), name='cache-stats'),
|
|
path('cache/stats/', CacheStatsView.as_view(), name='cache-stats'),
|
|
|
|
|
|
|
|
- path('batch-extract-result/', ReadLocalJSONView.as_view(), name='ReadLocalJSONView'),
|
|
|
|
|
|
|
+ path('batch-extract/', ReadLocalJSONView.as_view(), name='ReadLocalJSONView'),
|
|
|
|
|
|
|
|
]
|
|
]
|
|
|
|
|
|