Harshit Pathak 3 hónapja
szülő
commit
fac52a1104
1 módosított fájl, 2 hozzáadás és 2 törlés
  1. 2 2
      attr_extraction/urls.py

+ 2 - 2
attr_extraction/urls.py

@@ -20,7 +20,7 @@ from .views import CacheManagementView, CacheStatsView
 urlpatterns = [
     # Existing endpoints
     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/upload-excel/', ProductUploadExcelView.as_view(), name='product-upload-excel'),
     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/stats/', CacheStatsView.as_view(), name='cache-stats'),
 
-    path('batch-extract-result/', ReadLocalJSONView.as_view(), name='ReadLocalJSONView'),
+    path('batch-extract/', ReadLocalJSONView.as_view(), name='ReadLocalJSONView'),
 
 ]