15 lines
398 B
Python
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'),
|
|
]
|