1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-04 09:32:48 -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:
Thomas Rittson
2021-05-18 10:08:42 +10:00
committed by GitHub
parent 6ace7daf53
commit 982e26cbfd
2 changed files with 4 additions and 0 deletions

View File

@ -20,6 +20,7 @@ namespace Bit.Core.Models.Data
Password = cipher.Login.Password;
PasswordRevisionDate = cipher.Login.PasswordRevisionDate;
Totp = cipher.Login.Totp;
AutofillOnPageLoad = cipher.Login.AutofillOnPageLoad;
}
public string Uri
@ -32,6 +33,7 @@ namespace Bit.Core.Models.Data
public string Password { get; set; }
public DateTime? PasswordRevisionDate { get; set; }
public string Totp { get; set; }
public bool? AutofillOnPageLoad { get; set; }
public class CipherLoginUriData
{