X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/3fceb197b7f492cf5cfcb4034b6e045638f128d4..HEAD:/src/paypal/urls.py diff --git a/src/paypal/urls.py b/src/paypal/urls.py index bd2699398..4bd64e29e 100644 --- a/src/paypal/urls.py +++ b/src/paypal/urls.py @@ -1,15 +1,16 @@ -# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. -# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Wolne Lektury. See NOTICE for more information. # -from django.conf.urls import url +from django.urls import path from django.views.generic import RedirectView from . import views urlpatterns = ( - url(r'^form/$', RedirectView.as_view(url='/towarzystwo/dolacz/')), - url(r'^app-form/$', RedirectView.as_view(url='/towarzystwo/dolacz/app/')), + path('form/', RedirectView.as_view(url='/pomagam/')), + path('app-form/', RedirectView.as_view(url='/pomagam/?pk_campaign=aplikacja')), - url(r'^return/$', views.paypal_return, name='paypal_return'), - url(r'^app-return/$', views.paypal_return, kwargs={'app': True}, name='paypal_app_return'), - url(r'^cancel/$', views.paypal_cancel, name='paypal_cancel'), + path('init//', views.paypal_init, name='paypal_init'), + path('return//', views.paypal_return, name='paypal_return'), + path('app-return//', views.paypal_return, kwargs={'app': True}, name='paypal_app_return'), + path('cancel/', views.paypal_cancel, name='paypal_cancel'), )