aboutsummaryrefslogtreecommitdiff
path: root/urls.py
diff options
context:
space:
mode:
authorAlban Gruin2017-01-22 18:38:52 +0100
committerAlban Gruin2017-01-22 18:38:52 +0100
commitc0f72b8c7062eceda834beae57efbe95d94eb4f9 (patch)
treeb5cb45720d672619556bcdf1e1a2a19e919eb1cc /urls.py
parent6a9464882f74bc8a85ad86d098f8b4da04c854ca (diff)
Mécanismes d'abonnement et de désabonnement
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/urls.py b/urls.py
index 46a15cc..1805bb0 100644
--- a/urls.py
+++ b/urls.py
@@ -5,4 +5,6 @@ from . import views
urlpatterns = [
url(r"^$", views.index, name="index"),
url(r"^(?P<timetable_slug>[-\w]+)/(?P<year>[0-9]{4})/(?P<week>[0-53]{1,2})/(?P<group_slug>[-\w]+)/$", views.timetable, name="timetable"),
+ url(r"^subscriptions/confirm/(?P<token>[0-9a-f]{40})$", views.confirm_subscription, name="confirm"),
+ url(r"^subscriptions/cancel/(?P<token>[0-9a-f]{40})$", views.cancel_subscription, name="cancel"),
]