1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-18 02:41:15 +02:00

msecure csv importer

This commit is contained in:
Kyle Spearrin 2018-07-12 16:27:37 -04:00
parent 470a767eaf
commit ba2debf577
3 changed files with 7 additions and 1 deletions

2
jslib

@ -1 +1 @@
Subproject commit 41dd6b1f2c2d12bfa23162fa4ff5200620b6e8ac
Subproject commit 5fac06771310a083a004542db4c67028308f40c9

View File

@ -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" &rarr; "Export" &rarr; "CSV File..." and save the CSV file.
</ng-container>
</app-callout>
<div class="row">
<div class="col-6">

View File

@ -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;
}