mirror of
https://github.com/bitwarden/server
synced 2026-01-07 02:53:38 +00:00
"Auto-fill on page load" options (#986)
* add autofill on page load options to login models * Remove autofillOnPageLoadOptions enum
This commit is contained in:
@@ -24,6 +24,7 @@ namespace Bit.Core.Models.Api
|
||||
Password = data.Password;
|
||||
PasswordRevisionDate = data.PasswordRevisionDate;
|
||||
Totp = data.Totp;
|
||||
AutofillOnPageLoad = data.AutofillOnPageLoad;
|
||||
}
|
||||
|
||||
[EncryptedString]
|
||||
@@ -57,6 +58,7 @@ namespace Bit.Core.Models.Api
|
||||
[EncryptedString]
|
||||
[EncryptedStringLength(1000)]
|
||||
public string Totp { get; set; }
|
||||
public bool? AutofillOnPageLoad { get; set; }
|
||||
|
||||
public class CipherLoginUriModel
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user