feat(_types.py): allow team admin to delete member from team

This commit is contained in:
Krrish Dholakia 2024-08-20 16:25:13 -07:00
parent 64affd0d6b
commit c305eb3321
2 changed files with 7 additions and 3 deletions

View file

@ -342,7 +342,10 @@ class LiteLLMRoutes(enum.Enum):
+ sso_only_routes
)
team_admin_routes: List = ["/team/member_add"] + internal_user_routes
team_admin_routes: List = [
"/team/member_add",
"/team/member_delete",
] + internal_user_routes
# class LiteLLMAllowedRoutes(LiteLLMBase):