mirror of
https://github.com/bitwarden/server
synced 2026-02-12 14:33:49 +00:00
* Add default collection name to call stack for restore user command * Committing feature flag and request model. * Added tests * fix for tests. * added empty string to test * figured out the mystery commit. * added vnext onto method name. * updating tests and command to include feature flag * moved event call * last few changes. * opting for null instead of empty string.
14 lines
388 B
C#
14 lines
388 B
C#
using Bit.Core.Utilities;
|
|
|
|
namespace Bit.Api.AdminConsole.Models.Request.Organizations;
|
|
|
|
public class OrganizationUserRestoreRequest
|
|
{
|
|
/// <summary>
|
|
/// This is the encrypted default collection name to be used for restored users if required
|
|
/// </summary>
|
|
[EncryptedString]
|
|
[EncryptedStringLength(1000)]
|
|
public string? DefaultUserCollectionName { get; set; }
|
|
}
|