dashlane csv importer

This commit is contained in:
Kyle Spearrin 2018-07-12 15:53:34 -04:00
parent 763e43905a
commit 8e3d5b99c5
2 changed files with 7 additions and 0 deletions

View File

@ -88,6 +88,10 @@
Using the Password Safe desktop application, navigate to "File" → "Export To" → "XML format..." and save the XML
file.
</ng-container>
<ng-container *ngIf="format === 'dashlanecsv'">
Using the Dashlane desktop application, navigate to "File" &rarr; "Export" &rarr; "Unsecured archive (readable) in CSV format"
and save the CSV file.
</ng-container>
</app-callout>
<div class="row">
<div class="col-6">

View File

@ -25,6 +25,7 @@ import { AviraCsvImporter } from 'jslib/importers/aviraCsvImporter';
import { BitwardenCsvImporter } from 'jslib/importers/bitwardenCsvImporter';
import { BlurCsvImporter } from 'jslib/importers/blurCsvImporter';
import { ChromeCsvImporter } from 'jslib/importers/chromeCsvImporter';
import { DashlaneCsvImporter } from 'jslib/importers/dashlaneCsvImporter';
import { EnpassCsvImporter } from 'jslib/importers/enpassCsvImporter';
import { FirefoxCsvImporter } from 'jslib/importers/firefoxCsvImporter';
import { Importer } from 'jslib/importers/importer';
@ -260,6 +261,8 @@ export class ImportComponent implements OnInit {
return new EnpassCsvImporter();
case 'pwsafexml':
return new PasswordSafeXmlImporter();
case 'dashlanecsv':
return new DashlaneCsvImporter();
default:
return null;
}