X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/de08100bad0d82b2823453ecccaa66fd7521cd41..HEAD:/src/newsletter/urls.py diff --git a/src/newsletter/urls.py b/src/newsletter/urls.py index 566f777f4..2d520560d 100644 --- a/src/newsletter/urls.py +++ b/src/newsletter/urls.py @@ -1,7 +1,16 @@ -# -*- coding: utf-8 -*- -from django.conf.urls import url +# 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.urls import path +from django.views.generic import RedirectView from . import views urlpatterns = [ - url(r'^wypisz-sie/$', views.unsubscribe, name='unsubscribe'), + 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'), ]