1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-29 22:53:18 +00:00
Files
jslib/src/models/domain/folder.ts
2018-08-20 16:01:26 -04:00

33 lines
794 B
TypeScript

import { FolderData } from '../data/folderData';
import { FolderView } from '../view/folderView';
import { CipherString } from './cipherString';
import Domain from './domain';
export class Folder extends Domain {
id: string;
name: CipherString;
revisionDate: Date;
constructor(obj?: FolderData, alreadyEncrypted: boolean = false) {
super();
if (obj == null) {
return;
}
this.buildDomainModel(this, obj, {
id: null,
name: null,
}, alreadyEncrypted, ['id']);
this.revisionDate = obj.revisionDate != null ? new Date(obj.revisionDate) : null;
}
decrypt(): Promise<FolderView> {
return this.decryptObj(new FolderView(this), {
name: null,
}, null);
}
}