chore: version bump

This commit is contained in:
Timothy Jaeryang Baek
2024-11-22 19:22:35 -08:00
parent 320cf06333
commit 9412f51c19
4 changed files with 5 additions and 9 deletions

View File

@@ -246,13 +246,9 @@ async def ldap_auth(request: Request, response: Response, form_data: LdapForm):
)
user = Auths.insert_new_auth(
email=mail,
password=str(uuid.uuid4()),
name=cn,
role=role
email=mail, password=str(uuid.uuid4()), name=cn, role=role
)
if not user:
raise HTTPException(
500, detail=ERROR_MESSAGES.CREATE_USER_ERROR