mirror of
https://github.com/bitwarden/browser.git
synced 2025-01-04 18:37:45 +01:00
zoho csv importer
This commit is contained in:
parent
f43fd34a8c
commit
3d4848da90
2
jslib
2
jslib
@ -1 +1 @@
|
|||||||
Subproject commit 3f329ca6132ef03b562f0ae67d047daed11cd099
|
Subproject commit 8149d7877d97c9c8a945ae934ab9c6a1fe74fd63
|
@ -126,6 +126,12 @@
|
|||||||
Using the Password Boss desktop application, navigate to "File" → "Export data" → "Password Boss JSON - not encrypted"
|
Using the Password Boss desktop application, navigate to "File" → "Export data" → "Password Boss JSON - not encrypted"
|
||||||
and save the JSON file.
|
and save the JSON file.
|
||||||
</ng-container>
|
</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>
|
</app-callout>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-6">
|
<div class="col-6">
|
||||||
|
@ -49,6 +49,7 @@ import { SaferPassCsvImporter } from 'jslib/importers/saferpassCsvImport';
|
|||||||
import { StickyPasswordXmlImporter } from 'jslib/importers/stickyPasswordXmlImporter';
|
import { StickyPasswordXmlImporter } from 'jslib/importers/stickyPasswordXmlImporter';
|
||||||
import { TrueKeyCsvImporter } from 'jslib/importers/truekeyCsvImporter';
|
import { TrueKeyCsvImporter } from 'jslib/importers/truekeyCsvImporter';
|
||||||
import { UpmCsvImporter } from 'jslib/importers/upmCsvImporter';
|
import { UpmCsvImporter } from 'jslib/importers/upmCsvImporter';
|
||||||
|
import { ZohoVaultCsvImporter } from 'jslib/importers/zohoVaultCsvImporter';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-import',
|
selector: 'app-import',
|
||||||
@ -286,6 +287,8 @@ export class ImportComponent implements OnInit {
|
|||||||
return new AscendoCsvImporter();
|
return new AscendoCsvImporter();
|
||||||
case 'passwordbossjson':
|
case 'passwordbossjson':
|
||||||
return new PasswordBossJsonImporter();
|
return new PasswordBossJsonImporter();
|
||||||
|
case 'zohovaultcsv':
|
||||||
|
return new ZohoVaultCsvImporter();
|
||||||
default:
|
default:
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user