mirror of
https://github.com/bitwarden/server
synced 2026-01-10 12:33:49 +00:00
[PM-23242] Added UserDecryption with MasterPasswordUnlock as part of /sync response (#6102)
* Added MasterPasswordUnlock to UserDecryptionOptions as part of identity response * Added UserDecryption with MasterPasswordUnlock as part of /sync response
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
namespace Bit.Core.KeyManagement.Models.Response;
|
||||
|
||||
public class UserDecryptionResponseModel
|
||||
{
|
||||
/// <summary>
|
||||
/// Returns the unlock data when the user has a master password that can be used to decrypt their vault.
|
||||
/// </summary>
|
||||
public MasterPasswordUnlockResponseModel? MasterPasswordUnlock { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user