X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/002577cf05a6730e8b1c97d1931d79758cbcbfdc..c48556c444d6ead2372138a18c11ee21f29e7be5:/apps/funding/urls.py diff --git a/apps/funding/urls.py b/apps/funding/urls.py index e92704d71..f05bc1d86 100644 --- a/apps/funding/urls.py +++ b/apps/funding/urls.py @@ -6,7 +6,7 @@ from django.conf.urls import patterns, url, include from .models import Offer from .views import (WLFundView, OfferDetailView, OfferListView, - ThanksView, NoThanksView, CurrentView) + ThanksView, NoThanksView, CurrentView, DisableNotifications) urlpatterns = patterns('', @@ -19,6 +19,8 @@ urlpatterns = patterns('', url(r'^dziekujemy/$', ThanksView.as_view(), name='funding_thanks'), url(r'^niepowodzenie/$', NoThanksView.as_view(), name='funding_nothanks'), + + url(r'^wylacz_email/$', DisableNotifications.as_view(), name='funding_disable_notifications'), url(r'^getpaid/', include('getpaid.urls')), )