1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 09:43:23 +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

@@ -18,7 +18,7 @@ export class CipherData {
edit: boolean;
organizationUseTotp: boolean;
favorite: boolean;
revisionDate: Date;
revisionDate: string;
type: CipherType;
sizeName: string;
name: string;

View File

@@ -2,7 +2,7 @@ import { PasswordHistoryResponse } from '../response/passwordHistoryResponse';
export class PasswordHistoryData {
password: string;
lastUsedDate: Date;
lastUsedDate: string;
constructor(response?: PasswordHistoryResponse) {
if (response == null) {