1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 09:13:33 +00:00

sync folders and ciphers. fix dates

This commit is contained in:
Kyle Spearrin
2018-08-20 16:01:26 -04:00
parent ddee5908f1
commit d0c51bacfd
15 changed files with 127 additions and 49 deletions

View File

@@ -22,7 +22,7 @@ export class CipherResponse {
favorite: boolean;
edit: boolean;
organizationUseTotp: boolean;
revisionDate: Date;
revisionDate: string;
attachments: AttachmentResponse[];
passwordHistory: PasswordHistoryResponse[];
collectionIds: string[];

View File

@@ -1,6 +1,6 @@
export class PasswordHistoryResponse {
password: string;
lastUsedDate: Date;
lastUsedDate: string;
constructor(response: any) {
this.password = response.Password;