Spaces:
Runtime error
Runtime error
Commit
·
e2f0611
1
Parent(s):
982a543
Update verification domain
Browse files
TechdocsAPI/backend/services/auth/ops.py
CHANGED
@@ -34,7 +34,7 @@ async def ops_signup(bgtasks: BackgroundTasks, response_result: GeneralResponse,
|
|
34 |
# user with the entered credentials already exists
|
35 |
raise ExistingUserException(response_result)
|
36 |
verifiction_token = Auth.create_access_token(f"{data.username} {data.email}", secret_name='VERIFICATION')
|
37 |
-
verification_link = f"
|
38 |
|
39 |
email_body_params = {
|
40 |
"username": data.username,
|
|
|
34 |
# user with the entered credentials already exists
|
35 |
raise ExistingUserException(response_result)
|
36 |
verifiction_token = Auth.create_access_token(f"{data.username} {data.email}", secret_name='VERIFICATION')
|
37 |
+
verification_link = f"https://caffeinecrew-techdocs.hf.space/auth/verify/{verifiction_token}"
|
38 |
|
39 |
email_body_params = {
|
40 |
"username": data.username,
|