File size: 683 Bytes
0277ad1
0c665d3
0277ad1
 
 
 
 
 
 
0c665d3
37708e7
0c665d3
 
0623773
0277ad1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from django.urls import path
from .views import refreshHeb, refreshSephora, refreshWallmart, refreshUlta,home, refreshTarget, ProductListView, refreshAll, download_all_product_csv


urlpatterns = [
    path('refreshHeb', refreshHeb, name='refreshHeb'),
    path('refreshSephora', refreshSephora, name='refreshSephora'),
    path('refreshWallmart', refreshWallmart, name='refreshWallmart'),
    path('refreshUlta', refreshUlta, name='refreshUlta'),
    path('', ProductListView.as_view(), name='home'),
    path('refreshTarget', refreshTarget, name='refreshTarget'),
    path('refresh', refreshAll, name='refresh'),
    path('download', download_all_product_csv, name='download'),

]