From aed32e0725c9a50626ff4176a97f187710aa128d Mon Sep 17 00:00:00 2001 From: Tom Hubrecht Date: Fri, 13 Sep 2024 17:32:45 +0200 Subject: [PATCH] feat(profile): Change the url so that the redirection is automatic after connexion --- src/dgsi/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dgsi/urls.py b/src/dgsi/urls.py index deb3429..cc2e0d0 100644 --- a/src/dgsi/urls.py +++ b/src/dgsi/urls.py @@ -5,5 +5,5 @@ from . import views app_name = "dgsi" urlpatterns = [ - path("profile", views.ProfileView.as_view(), name="dgn-profile"), + path("accounts/profile/", views.ProfileView.as_view(), name="dgn-profile"), ]