mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 15:53:27 +00:00
splash id importer
This commit is contained in:
2
jslib
2
jslib
Submodule jslib updated: 790e50f2b6...06682e2672
@@ -132,6 +132,10 @@
|
|||||||
and paste the data. Save the data from the text editor as
|
and paste the data. Save the data from the text editor as
|
||||||
<code>zoho_export.csv</code>.
|
<code>zoho_export.csv</code>.
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
<ng-container *ngIf="format === 'splashidcsv'">
|
||||||
|
Using the SplashID Safe desktop application, click on the SplashID blue lock logo in the top right corner. Navigate to "Export"
|
||||||
|
→ "Export as CSV" and save the CSV file.
|
||||||
|
</ng-container>
|
||||||
</app-callout>
|
</app-callout>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-6">
|
<div class="col-6">
|
||||||
|
|||||||
@@ -46,6 +46,7 @@ import { PasswordSafeXmlImporter } from 'jslib/importers/passwordSafeXmlImporter
|
|||||||
import { RoboFormCsvImporter } from 'jslib/importers/roboformCsvImporter';
|
import { RoboFormCsvImporter } from 'jslib/importers/roboformCsvImporter';
|
||||||
import { SafeInCloudXmlImporter } from 'jslib/importers/safeInCloudXmlImporter';
|
import { SafeInCloudXmlImporter } from 'jslib/importers/safeInCloudXmlImporter';
|
||||||
import { SaferPassCsvImporter } from 'jslib/importers/saferpassCsvImport';
|
import { SaferPassCsvImporter } from 'jslib/importers/saferpassCsvImport';
|
||||||
|
import { SplashIdCsvImporter } from 'jslib/importers/splashIdCsvImporter';
|
||||||
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';
|
||||||
@@ -289,6 +290,8 @@ export class ImportComponent implements OnInit {
|
|||||||
return new PasswordBossJsonImporter();
|
return new PasswordBossJsonImporter();
|
||||||
case 'zohovaultcsv':
|
case 'zohovaultcsv':
|
||||||
return new ZohoVaultCsvImporter();
|
return new ZohoVaultCsvImporter();
|
||||||
|
case 'splashidcsv':
|
||||||
|
return new SplashIdCsvImporter();
|
||||||
default:
|
default:
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user