mirror of
https://github.com/bitwarden/server.git
synced 2025-07-04 17:42:49 -05:00
refactored data storage to use cipher table. added history table and insert triggers.
This commit is contained in:
@ -13,7 +13,7 @@ namespace Bit.Api.Models
|
||||
throw new ArgumentNullException(nameof(user));
|
||||
}
|
||||
|
||||
Id = user.Id;
|
||||
Id = user.Id.ToString();
|
||||
Name = user.Name;
|
||||
Email = user.Email;
|
||||
MasterPasswordHint = string.IsNullOrWhiteSpace(user.MasterPasswordHint) ? null : user.MasterPasswordHint;
|
||||
|
Reference in New Issue
Block a user