This commit is contained in:
Timothy Jaeryang Baek
2024-12-24 17:01:17 -07:00
parent 00f3a9cb52
commit a074991d3a
2 changed files with 4 additions and 3 deletions
-1
View File
@@ -547,7 +547,6 @@ async def add_user(form_data: AddUserForm, user=Depends(get_admin_user)):
raise HTTPException(400, detail=ERROR_MESSAGES.EMAIL_TAKEN)
try:
print(form_data)
hashed = get_password_hash(form_data.password)
user = Auths.insert_new_auth(
form_data.email.lower(),