File: //home/arjun/projects/aigenerator/AI-LG-backend/Ai_logo_generation/payment/urls.py
from .views import create_payment_intent, create_setup_intent, create_subscription, stripe_webhook, list_products, cancel_subscription
from django.urls import path
urlpatterns = [
path('create-intent/', create_payment_intent, name='create_payment_intent'),
path('products/', list_products, name='list_products'),
path('setup-intent/', create_setup_intent, name='create_setup_intent'),
path('create-subscription/', create_subscription, name='create_subscription'),
path('webhook/', stripe_webhook, name='stripe_webhook'),
path('cancel-subscription/', cancel_subscription, name='cancel_subscription'),
# path('single-payment/transaction-details/', update_latest_transaction, name='transaction-details-single-payment'),
]