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