X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/6d42bc478e3d1bd90eb294464748c21e4de0fc63..HEAD:/src/newsletter/urls.py diff --git a/src/newsletter/urls.py b/src/newsletter/urls.py index c99b47a43..2d520560d 100644 --- a/src/newsletter/urls.py +++ b/src/newsletter/urls.py @@ -1,14 +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'^zapisz-sie/$', views.subscribe_form, name='subscribe'), - url(r'^zapis/$', views.subscribed, name='subscribed'), - url(r'^potwierdzenie/(?P[0-9]+)/(?P[0-9a-f]+)/$', - views.confirm_subscription, name='confirm_subscription'), - url(r'^wypisz-sie/$', views.unsubscribe_form, name='unsubscribe'), - url(r'^wypisano/$', views.unsubscribed, name='unsubscribed'), + path('zapisz-sie/', views.subscribe_form, name='subscribe'), + path('zapisz-sie//', views.subscribe_form, name='subscribe'), + path('zapis/', views.subscribed, name='subscribed'), + path('wypisz-sie/', RedirectView.as_view( + url='https://mailing.mdrn.pl/?p=unsubscribe', + permanent=False, + ), name='unsubscribe'), ]