1
0
mirror of https://github.com/bitwarden/server synced 2025-12-25 12:43:14 +00:00

Updated XML

This commit is contained in:
Jared McCannon
2025-12-01 14:41:28 -06:00
parent 1f7973c893
commit 8fb1e20136

View File

@@ -7,8 +7,18 @@ namespace Bit.Core.AdminConsole.OrganizationFeatures.Policies.Enforcement.AutoCo
/// </summary>
public record AutomaticUserConfirmationPolicyEnforcementRequest
{
/// <summary>
/// Organization user to be confirmed to be confirmed
/// </summary>
public OrganizationUser OrganizationUser { get; }
/// <summary>
/// Collection of organization users that match the provided user. This must be populated with organizations users associated with the
/// organization user to confirm.
/// </summary>
public IEnumerable<OrganizationUser> OtherOrganizationsOrganizationUsers { get; }
/// <summary>
/// User associated with the organization user to be confirmed
/// </summary>
public User User { get; }
/// <summary>
@@ -17,10 +27,9 @@ public record AutomaticUserConfirmationPolicyEnforcementRequest
/// <remarks>
/// This record is used to encapsulate the data required for handling the automatic confirmation policy enforcement.
///
/// Use if you've retrieved the organization user records for other organizations already.
/// </remarks>
/// <param name="organizationUserToValidate">The organization user to be validated within the current organization context.</param>
/// <param name="organizationUsersForOtherOrganizations">A collection of organization user records that match the provided user.</param>
/// <param name="organizationUsersForOtherOrganizations">THIS MUST BE POPULATED CORRECTLY. A collection of organization user records that match the provided user.</param>
/// <param name="user">The general user associated with the operation.</param>
public AutomaticUserConfirmationPolicyEnforcementRequest(
OrganizationUser organizationUserToValidate,