1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-22 19:23:52 +00:00

bitwarden json importer

This commit is contained in:
Kyle Spearrin
2018-12-17 13:21:06 -05:00
parent 3b22df15e8
commit 4d57f44a69
3 changed files with 73 additions and 0 deletions

View File

@@ -73,6 +73,9 @@ export class ExportService implements ExportServiceAbstraction {
};
decFolders.forEach((f) => {
if (f.id == null) {
return;
}
const folder = new FolderExport();
folder.build(f);
jsonDoc.folders.push(folder);