1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

[PM-17143] Add sso external id to member response model (#5273)

(cherry picked from commit 42c8c3b6f6c40b773bd37f21649536bf03f990ff)
This commit is contained in:
Kyle Spearrin 2025-01-15 21:52:11 -05:00 committed by Thomas Rittson
parent 129c6b7bfc
commit 5461ae6956
No known key found for this signature in database
GPG Key ID: CDDDA03861C35E27

View File

@ -50,6 +50,7 @@ public class MemberResponseModel : MemberBaseModel, IResponseModel
Status = user.Status;
Collections = collections?.Select(c => new AssociationWithPermissionsResponseModel(c));
ResetPasswordEnrolled = user.ResetPasswordKey != null;
SsoExternalId = user.SsoExternalId;
}
/// <summary>
@ -104,4 +105,10 @@ public class MemberResponseModel : MemberBaseModel, IResponseModel
/// </summary>
[Required]
public bool ResetPasswordEnrolled { get; }
/// <summary>
/// SSO external identifier for linking this member to an identity provider.
/// </summary>
/// <example>sso_external_id_123456</example>
public string SsoExternalId { get; set; }
}