1
0
mirror of https://github.com/bitwarden/web synced 2025-12-06 00:03:28 +00:00

passkeep csv importer

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

2
jslib

Submodule jslib updated: 06682e2672...e5d060c80b

View File

@@ -136,6 +136,10 @@
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>
<ng-container *ngIf="format === 'passkeepcsv'">
Using the PassKeep mobile app, navigate to "Backup/Restore". Locate the "CSV Backup/Restore" section and click "Backup to
CSV" to save the CSV file.
</ng-container>
</app-callout>
<div class="row">
<div class="col-6">

View File

@@ -40,6 +40,7 @@ import { MSecureCsvImporter } from 'jslib/importers/msecureCsvImporter';
import { OnePassword1PifImporter } from 'jslib/importers/onepassword1PifImporter';
import { OnePasswordWinCsvImporter } from 'jslib/importers/onepasswordWinCsvImporter';
import { PadlockCsvImporter } from 'jslib/importers/padlockCsvImporter';
import { PassKeepCsvImporter } from 'jslib/importers/passkeepCsvImporter';
import { PasswordBossJsonImporter } from 'jslib/importers/passwordBossJsonImporter';
import { PasswordDragonXmlImporter } from 'jslib/importers/passwordDragonXmlImporter';
import { PasswordSafeXmlImporter } from 'jslib/importers/passwordSafeXmlImporter';
@@ -292,6 +293,8 @@ export class ImportComponent implements OnInit {
return new ZohoVaultCsvImporter();
case 'splashidcsv':
return new SplashIdCsvImporter();
case 'passkeepcsv':
return new PassKeepCsvImporter();
default:
return null;
}