mirror of
https://github.com/bitwarden/mobile
synced 2025-12-22 03:03:46 +00:00
Password reprompt (#1365)
* Make card number hidden * Add support for password reprompt * Rename PasswordPrompt to Reprompt * Protect autofill * Use Enums.CipherRepromptType * Fix iOS not building * Protect iOS autofill * Update to match jslib * Fix failing build
This commit is contained in:
@@ -18,6 +18,7 @@ namespace Bit.iOS.Core.Models
|
||||
Totp = cipher.Login?.Totp;
|
||||
Uris = cipher.Login?.Uris?.Select(u => new LoginUriModel(u)).ToList();
|
||||
Fields = cipher.Fields?.Select(f => new Tuple<string, string>(f.Name, f.Value)).ToList();
|
||||
Reprompt = cipher.Reprompt;
|
||||
}
|
||||
|
||||
public string Id { get; set; }
|
||||
@@ -28,6 +29,7 @@ namespace Bit.iOS.Core.Models
|
||||
public string Totp { get; set; }
|
||||
public List<Tuple<string, string>> Fields { get; set; }
|
||||
public CipherView CipherView { get; set; }
|
||||
public CipherRepromptType Reprompt { get; set; }
|
||||
|
||||
public class LoginUriModel
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user