Fix OAuth token import and table filters

This commit is contained in:
fawney19
2026-05-01 02:14:49 +08:00
parent 9570e5c2c1
commit 4fc7cecf30
54 changed files with 3160 additions and 727 deletions

View File

@@ -492,6 +492,14 @@ fn enrich_generic_identity(
.or_insert(value);
}
}
if let Some(profile) = claims
.get("https://api.openai.com/profile")
.and_then(Value::as_object)
{
if let Some(value) = profile.get("email").cloned() {
auth_config.entry("email".to_string()).or_insert(value);
}
}
}
}
}