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

zoho csv importer

This commit is contained in:
Kyle Spearrin
2018-07-19 15:13:12 -04:00
parent f43fd34a8c
commit 3d4848da90
3 changed files with 10 additions and 1 deletions

View File

@@ -49,6 +49,7 @@ import { SaferPassCsvImporter } from 'jslib/importers/saferpassCsvImport';
import { StickyPasswordXmlImporter } from 'jslib/importers/stickyPasswordXmlImporter';
import { TrueKeyCsvImporter } from 'jslib/importers/truekeyCsvImporter';
import { UpmCsvImporter } from 'jslib/importers/upmCsvImporter';
import { ZohoVaultCsvImporter } from 'jslib/importers/zohoVaultCsvImporter';
@Component({
selector: 'app-import',
@@ -286,6 +287,8 @@ export class ImportComponent implements OnInit {
return new AscendoCsvImporter();
case 'passwordbossjson':
return new PasswordBossJsonImporter();
case 'zohovaultcsv':
return new ZohoVaultCsvImporter();
default:
return null;
}