Pārlūkot izejas kodu

Merge pull request #7233 from iamcristi/patch-1

Fix: LDAP integration used None for image and that broke Authentication
Timothy Jaeryang Baek 5 mēneši atpakaļ
vecāks
revīzija
335337fc75
1 mainītis faili ar 5 papildinājumiem un 5 dzēšanām
  1. 5 5
      backend/open_webui/apps/webui/routers/auths.py

+ 5 - 5
backend/open_webui/apps/webui/routers/auths.py

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