feat(backend): implement org member patch api (#12800)

This commit is contained in:
Hiep Le
2026-02-10 20:01:24 +07:00
committed by GitHub
parent 4a089a3a0d
commit f20c956196
6 changed files with 955 additions and 50 deletions

View File

@@ -15,6 +15,11 @@ IS_FEATURE_ENV = (
) # Does not include the staging deployment
IS_LOCAL_ENV = bool(HOST == 'localhost')
# Role name constants
ROLE_OWNER = 'owner'
ROLE_ADMIN = 'admin'
ROLE_USER = 'user'
# Deprecated - billing margins are now handled internally in litellm
DEFAULT_BILLING_MARGIN = float(os.environ.get('DEFAULT_BILLING_MARGIN', '1.0'))