mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 09:13:33 +00:00
support for password revision date on logins
This commit is contained in:
@@ -4,11 +4,13 @@ export class LoginApi {
|
||||
uris: LoginUriApi[];
|
||||
username: string;
|
||||
password: string;
|
||||
passwordRevisionDate?: Date;
|
||||
totp: string;
|
||||
|
||||
constructor(data: any) {
|
||||
this.username = data.Username;
|
||||
this.password = data.Password;
|
||||
this.passwordRevisionDate = data.PasswordRevisionDate;
|
||||
this.totp = data.Totp;
|
||||
|
||||
if (data.Uris) {
|
||||
|
||||
Reference in New Issue
Block a user