fix logic

This commit is contained in:
Patrick Willnow 2024-10-04 10:14:20 +02:00
parent 79b9c8a677
commit 6ddd8c7241

View File

@ -2256,9 +2256,11 @@ async def oauth_callback(provider: str, request: Request, response: Response):
if oauth_roles and "." in oauth_claim:
# Implementation to handle nested claims of arbitrary depth
nested_claims = oauth_claim.split(".")
claim_data = user_data.get(nested_claims[0])
for nested_claim in nested_claims[1:]:
claim_data = user_data
for nested_claim in nested_claims:
claim_data = claim_data.get(nested_claim)
if claim_data is None:
break
oauth_roles = claim_data
log.info(f"User {user.name} has OAuth roles: {oauth_roles}")