splash id importer

This commit is contained in:
Kyle Spearrin 2018-07-23 11:23:23 -04:00
parent 69e059ba01
commit 183f5fea5c
3 changed files with 8 additions and 1 deletions

2
jslib

@ -1 +1 @@
Subproject commit 790e50f2b68b2ed956533f46ded6b393a5dd96b5
Subproject commit 06682e267259dcc4ddbf813550451ea620ad9b98

View File

@ -132,6 +132,10 @@
and paste the data. Save the data from the text editor as
<code>zoho_export.csv</code>.
</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"
&rarr; "Export as CSV" and save the CSV file.
</ng-container>
</app-callout>
<div class="row">
<div class="col-6">

View File

@ -46,6 +46,7 @@ import { PasswordSafeXmlImporter } from 'jslib/importers/passwordSafeXmlImporter
import { RoboFormCsvImporter } from 'jslib/importers/roboformCsvImporter';
import { SafeInCloudXmlImporter } from 'jslib/importers/safeInCloudXmlImporter';
import { SaferPassCsvImporter } from 'jslib/importers/saferpassCsvImport';
import { SplashIdCsvImporter } from 'jslib/importers/splashIdCsvImporter';
import { StickyPasswordXmlImporter } from 'jslib/importers/stickyPasswordXmlImporter';
import { TrueKeyCsvImporter } from 'jslib/importers/truekeyCsvImporter';
import { UpmCsvImporter } from 'jslib/importers/upmCsvImporter';
@ -289,6 +290,8 @@ export class ImportComponent implements OnInit {
return new PasswordBossJsonImporter();
case 'zohovaultcsv':
return new ZohoVaultCsvImporter();
case 'splashidcsv':
return new SplashIdCsvImporter();
default:
return null;
}