From 88dbeb6a3650a0cb0c1cfa56c0b50db7b6757ff1 Mon Sep 17 00:00:00 2001 From: Seb Date: Fri, 8 May 2020 10:04:02 +1000 Subject: [PATCH] Change url param to uuid now id has changed --- birdsong/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/birdsong/urls.py b/birdsong/urls.py index 0b4ae60..dd2642d 100644 --- a/birdsong/urls.py +++ b/birdsong/urls.py @@ -5,5 +5,5 @@ from .views import unsubscribe app_name = 'birdsong' urlpatterns = [ - path('unsubscribe//', unsubscribe.unsubscribe_user, name='unsubscribe') + path('unsubscribe//', unsubscribe.unsubscribe_user, name='unsubscribe') ]