mirror of
https://github.com/bitwarden/web
synced 2025-12-06 00:03:28 +00:00
password boss importer
This commit is contained in:
2
jslib
2
jslib
Submodule jslib updated: 4b5e192457...4750a64ece
@@ -122,6 +122,10 @@
|
||||
Using the Ascendo DataVault desktop application, navigate to "Tools" → "Export". In the dialog that pops up, select
|
||||
the "All Items (DVX, CSV)" option. Click the "Ok" button to save the CSV file.
|
||||
</ng-container>
|
||||
<ng-container *ngIf="format === 'passwordbossjson'">
|
||||
Using the Password Boss desktop application, navigate to "File" → "Export data" → "Password Boss JSON - not encrypted"
|
||||
and save the JSON 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 { PasswordBossJsonImporter } from 'jslib/importers/passwordBossJsonImporter';
|
||||
import { PasswordDragonXmlImporter } from 'jslib/importers/passwordDragonXmlImporter';
|
||||
import { PasswordSafeXmlImporter } from 'jslib/importers/passwordSafeXmlImporter';
|
||||
import { RoboFormCsvImporter } from 'jslib/importers/roboformCsvImporter';
|
||||
@@ -283,6 +284,8 @@ export class ImportComponent implements OnInit {
|
||||
return new RoboFormCsvImporter();
|
||||
case 'ascendocsv':
|
||||
return new AscendoCsvImporter();
|
||||
case 'passwordbossjson':
|
||||
return new PasswordBossJsonImporter();
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user