Stripe checkout #104411

Merged
Anna Sirota merged 61 commits from stripe into main 2024-06-17 18:08:41 +02:00
Showing only changes of commit 763d46ac3a - Show all commits

View File

@ -1,5 +1,4 @@
from django.urls import path, re_path from django.urls import path, re_path
from django.views.generic import RedirectView
from looper.views import settings as looper_settings from looper.views import settings as looper_settings
@ -71,10 +70,5 @@ urlpatterns = [
looper_settings.ReceiptPDFView.as_view(), looper_settings.ReceiptPDFView.as_view(),
name='receipt-pdf', name='receipt-pdf',
), ),
# TODO(anna): remove this once blender-cloud-1243.pdf no longer appear in access logs.
path(
'settings/receipts/blender-cloud-<int:order_id>.pdf',
RedirectView.as_view(pattern_name='subscriptions:receipt-pdf', permanent=True),
),
path('teams/', TeamsLanding.as_view(), name='teams-landing'), path('teams/', TeamsLanding.as_view(), name='teams-landing'),
] ]