101 / api /urls.py
thejagstudio's picture
Upload 54 files
085ce5c verified
raw
history blame
614 Bytes
from django.urls import path
from .views import *
urlpatterns = [
path('', HomeView.as_view(), name='home'),
path('barcode/<str:code>', BarCodeView.as_view(), name='home'),
path('establishments', EstablishmentListView.as_view(), name='establishment_List'),
path('resources-forward/<str:resource_name>/<str:image_id>', resources_forward, name='resources_forward'),
path('product-category', product_category, name='product_category'),
path('coupon-list', CouponListView.as_view(), name='coupon_List'),
path('coupon-redeem', CouponRedeemView.as_view(), name='coupon_redeem'),
]