mirror of
https://github.com/bitwarden/web
synced 2025-12-06 00:03:28 +00:00
zoho csv importer
This commit is contained in:
2
jslib
2
jslib
Submodule jslib updated: 3f329ca613...8149d7877d
@@ -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" → "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">
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user