1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-18 02:41:15 +02: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

2
jslib

@ -1 +1 @@
Subproject commit 3f329ca6132ef03b562f0ae67d047daed11cd099
Subproject commit 8149d7877d97c9c8a945ae934ab9c6a1fe74fd63

View File

@ -126,6 +126,12 @@
Using the Password Boss desktop application, navigate to "File" → "Export data" → "Password Boss JSON - not encrypted"
and save the JSON file.
</ng-container>
<ng-container *ngIf="format === 'zohovaultcsv'">
Log into the Zoho web vault (vault.zoho.com). Navigate to "Tools" &rarr; "Export Secrets". Select "All Secrets" and click
the "Zoho Vault Format CSV" button. Highlight and copy the data from the textarea. Open a text editor like Notepad
and paste the data. Save the data from the text editor as
<code>zoho_export.csv</code>.
</ng-container>
</app-callout>
<div class="row">
<div class="col-6">

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;
}