mirror of
https://github.com/tiennm99/litellm.git
synced 2026-08-20 04:23:56 +00:00
Merge pull request #22940 from BerriAI/litellm_fix_admin_viewer_org_list
Fix admin viewer unable to see all organizations
This commit is contained in:
@@ -649,8 +649,8 @@ async def list_organization(
|
||||
"mode": "insensitive", # Case-insensitive search
|
||||
}
|
||||
|
||||
# if proxy admin - get all orgs (with optional filters)
|
||||
if user_api_key_dict.user_role == LitellmUserRoles.PROXY_ADMIN:
|
||||
# if proxy admin or admin viewer - get all orgs (with optional filters)
|
||||
if _user_has_admin_view(user_api_key_dict):
|
||||
response = await prisma_client.db.litellm_organizationtable.find_many(
|
||||
where=where_conditions if where_conditions else None,
|
||||
include={"litellm_budget_table": True, "members": True, "teams": True},
|
||||
|
||||
Reference in New Issue
Block a user