Skip to content

Commit 25d5cc3

Browse files
committed
Fix activation link
1 parent 052afb3 commit 25d5cc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

auth/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def sign_up(request):
8282
# User is unactive until visiting activation link
8383
auth_profile.activation_key = activation_key
8484
auth_profile.key_expires = key_expires
85-
activation_link = 'http://127.0.0.1:8000/auth/activate/' + activation_key
85+
activation_link = 'http://127.0.0.1:8000/auth/v1/activate/' + activation_key
8686

8787
auth_profile.save()
8888

0 commit comments

Comments
 (0)