浏览代码

fix: api key creation

Timothy Jaeryang Baek 5 月之前
父节点
当前提交
206a4877c7
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      backend/open_webui/apps/webui/routers/auths.py

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

@@ -739,7 +739,7 @@ async def update_ldap_config(
 # create api key
 @router.post("/api_key", response_model=ApiKey)
 async def create_api_key(request: Request, user=Depends(get_current_user)):
-    if not request.app.config.state.ENABLE_API_KEY:
+    if not request.app.state.config.ENABLE_API_KEY:
         raise HTTPException(
             status.HTTP_403_FORBIDDEN,
             detail=ERROR_MESSAGES.API_KEY_CREATION_NOT_ALLOWED,