Files
ai_web/backend/config/urls.py
2026-01-27 18:15:43 +08:00

15 lines
398 B
Python

"""
URL configuration for ai_web project.
"""
from django.contrib import admin
from django.urls import path
from django.views.decorators.csrf import csrf_exempt
from .api import api
from apps.bounties.payments import handle_webhook
urlpatterns = [
path('admin/', admin.site.urls),
path('api/', api.urls),
path('webhooks/stripe/', csrf_exempt(handle_webhook), name='stripe-webhook'),
]