fix(api): add missing INNER_API_KEY to InnerAPIConfig (#19166)

This commit is contained in:
Yeuoly
2025-05-06 10:02:14 +08:00
committed by GitHub
parent 5a6f20d575
commit 8ac3a223a8
3 changed files with 12 additions and 1 deletions

View File

@@ -18,7 +18,7 @@ def enterprise_inner_api_only(view):
# get header 'X-Inner-Api-Key'
inner_api_key = request.headers.get("X-Inner-Api-Key")
if not inner_api_key or inner_api_key != dify_config.INNER_API_KEY_FOR_PLUGIN:
if not inner_api_key or inner_api_key != dify_config.INNER_API_KEY:
abort(401)
return view(*args, **kwargs)