mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-27 12:36:14 +01:00
msecure csv importer
This commit is contained in:
parent
470a767eaf
commit
ba2debf577
2
jslib
2
jslib
@ -1 +1 @@
|
||||
Subproject commit 41dd6b1f2c2d12bfa23162fa4ff5200620b6e8ac
|
||||
Subproject commit 5fac06771310a083a004542db4c67028308f40c9
|
@ -92,6 +92,9 @@
|
||||
Using the Dashlane desktop application, navigate to "File" → "Export" → "Unsecured archive (readable) in CSV format"
|
||||
and save the CSV file.
|
||||
</ng-container>
|
||||
<ng-container *ngIf="format === 'msecurecsv'">
|
||||
Using the mSecure desktop application, navigate to "File" → "Export" → "CSV File..." and save the CSV file.
|
||||
</ng-container>
|
||||
</app-callout>
|
||||
<div class="row">
|
||||
<div class="col-6">
|
||||
|
@ -34,6 +34,7 @@ import { KeePassXCsvImporter } from 'jslib/importers/keepassxCsvImporter';
|
||||
import { KeeperCsvImporter } from 'jslib/importers/keeperCsvImporter';
|
||||
import { LastPassCsvImporter } from 'jslib/importers/lastpassCsvImporter';
|
||||
import { MeldiumCsvImporter } from 'jslib/importers/meldiumCsvImporter';
|
||||
import { MSecureCsvImporter } from 'jslib/importers/msecureCsvImporter';
|
||||
import { OnePassword1PifImporter } from 'jslib/importers/onepassword1PifImporter';
|
||||
import { OnePasswordWinCsvImporter } from 'jslib/importers/onepasswordWinCsvImporter';
|
||||
import { PadlockCsvImporter } from 'jslib/importers/padlockCsvImporter';
|
||||
@ -263,6 +264,8 @@ export class ImportComponent implements OnInit {
|
||||
return new PasswordSafeXmlImporter();
|
||||
case 'dashlanecsv':
|
||||
return new DashlaneCsvImporter();
|
||||
case 'msecurecsv':
|
||||
return new MSecureCsvImporter();
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user