mirror of
https://github.com/bitwarden/mobile
synced 2025-12-10 05:13:31 +00:00
Hide email address in Sends (#1340)
* Add HideEmail model properties and locale strings * Fix UI strings * Add HideEmail to SendService * Add HideEmail option to UI * Tidy up declarations * Add Bitwarden Send translation warning
This commit is contained in:
@@ -24,6 +24,7 @@ namespace Bit.Core.Models.Data
|
||||
DeletionDate = response.DeletionDate;
|
||||
Password = response.Password;
|
||||
Disabled = response.Disabled;
|
||||
HideEmail = response.HideEmail.GetValueOrDefault();
|
||||
|
||||
switch (Type)
|
||||
{
|
||||
@@ -54,5 +55,6 @@ namespace Bit.Core.Models.Data
|
||||
public DateTime DeletionDate { get; set; }
|
||||
public string Password { get; set; }
|
||||
public bool Disabled { get; set; }
|
||||
public bool HideEmail { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user