feat(profile): Change the url so that the redirection is automatic after connexion

This commit is contained in:
Tom Hubrecht 2024-09-13 17:32:45 +02:00
parent 7491fdb376
commit aed32e0725
Signed by: thubrecht
SSH key fingerprint: SHA256:r+nK/SIcWlJ0zFZJGHtlAoRwq1Rm+WcKAm5ADYMoQPc

View file

@ -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"),
]