Load SCIM export profiles without identity join

Membership profile rows already carry SCIM userName and
name fields; export email comes from userName, not login
identity email.

Signed-off-by: Cursor Agent <cursoragent@cursor.com>

Co-authored-by: Bryan FRIMIN <bryan@frimin.fr>
This commit is contained in:
Cursor Agent
2026-07-29 21:13:39 +00:00
parent b715107e6c
commit ced25bad32
2 changed files with 2 additions and 4 deletions

View File

@@ -331,7 +331,7 @@ func loadSCIMProfileExportInfo(
key := strings.ToLower(*profile.UserName)
result[key] = scimProfileExportInfo{
email: profile.EmailAddress.String(),
email: scimEmailFromUserName(*profile.UserName),
fullName: profileFullName(profile),
}
}