mirror of
https://github.com/bitwarden/server.git
synced 2025-07-06 02:22:49 -05: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