Merge pull request #8371 from tarmst/fix-admins-added-to-groups-from-oauth-group-mgmt

fix: Fix admins added to groups from oauth group management
This commit is contained in:
Timothy Jaeryang Baek 2025-01-06 10:30:08 -08:00 committed by GitHub
commit 0c5bb6df80
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -314,7 +314,7 @@ class OAuthManager:
expires_delta=parse_duration(auth_manager_config.JWT_EXPIRES_IN),
)
if auth_manager_config.ENABLE_OAUTH_GROUP_MANAGEMENT:
if auth_manager_config.ENABLE_OAUTH_GROUP_MANAGEMENT and user.role != "admin":
self.update_user_groups(
user=user,
user_data=user_data,