1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-28 14:54:50 -05:00

UserId added to MemberResponseModel

This commit is contained in:
Kyle Spearrin 2020-03-17 12:05:06 -04:00
parent b7b06d77df
commit 9520a646ad

View File

@ -22,6 +22,7 @@ namespace Bit.Core.Models.Api.Public
}
Id = user.Id;
UserId = user.UserId;
Email = user.Email;
Status = user.Status;
Collections = collections?.Select(c => new AssociationWithPermissionsResponseModel(c));
@ -37,6 +38,7 @@ namespace Bit.Core.Models.Api.Public
}
Id = user.Id;
UserId = user.UserId;
Name = user.Name;
Email = user.Email;
TwoFactorEnabled = twoFactorEnabled;
@ -51,12 +53,18 @@ namespace Bit.Core.Models.Api.Public
[Required]
public string Object => "member";
/// <summary>
/// The member's unique identifier.
/// The member's unique identifier within the organization.
/// </summary>
/// <example>539a36c5-e0d2-4cf9-979e-51ecf5cf6593</example>
[Required]
public Guid Id { get; set; }
/// <summary>
/// The member's unique identifier across Bitwarden.
/// </summary>
/// <example>48b47ee1-493e-4c67-aef7-014996c40eca</example>
[Required]
public Guid? UserId { get; set; }
/// <summary>
/// The member's name, set from their user account profile.
/// </summary>
/// <example>John Smith</example>