Skip to content

Commit b00ffca

Browse files
fix: Fix the link routes in the user application.
1 parent cfa67b0 commit b00ffca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

promo_code/user/urls.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77

88
urlpatterns = [
99
django.urls.path(
10-
'user/auth/sign-up',
10+
'auth/sign-up',
1111
user.views.SignUpView.as_view(),
1212
name='sign-up',
1313
),
1414
django.urls.path(
15-
'user/auth/sign-in',
15+
'auth/sign-in',
1616
user.views.SignInView.as_view(),
1717
name='sign-in',
1818
),

0 commit comments

Comments
 (0)