mirror of
https://github.com/bitwarden/browser.git
synced 2025-01-04 18:37:45 +01:00
dashlane csv importer
This commit is contained in:
parent
763e43905a
commit
8e3d5b99c5
@ -88,6 +88,10 @@
|
|||||||
Using the Password Safe desktop application, navigate to "File" → "Export To" → "XML format..." and save the XML
|
Using the Password Safe desktop application, navigate to "File" → "Export To" → "XML format..." and save the XML
|
||||||
file.
|
file.
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
<ng-container *ngIf="format === 'dashlanecsv'">
|
||||||
|
Using the Dashlane desktop application, navigate to "File" → "Export" → "Unsecured archive (readable) in CSV format"
|
||||||
|
and save the CSV file.
|
||||||
|
</ng-container>
|
||||||
</app-callout>
|
</app-callout>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-6">
|
<div class="col-6">
|
||||||
|
@ -25,6 +25,7 @@ import { AviraCsvImporter } from 'jslib/importers/aviraCsvImporter';
|
|||||||
import { BitwardenCsvImporter } from 'jslib/importers/bitwardenCsvImporter';
|
import { BitwardenCsvImporter } from 'jslib/importers/bitwardenCsvImporter';
|
||||||
import { BlurCsvImporter } from 'jslib/importers/blurCsvImporter';
|
import { BlurCsvImporter } from 'jslib/importers/blurCsvImporter';
|
||||||
import { ChromeCsvImporter } from 'jslib/importers/chromeCsvImporter';
|
import { ChromeCsvImporter } from 'jslib/importers/chromeCsvImporter';
|
||||||
|
import { DashlaneCsvImporter } from 'jslib/importers/dashlaneCsvImporter';
|
||||||
import { EnpassCsvImporter } from 'jslib/importers/enpassCsvImporter';
|
import { EnpassCsvImporter } from 'jslib/importers/enpassCsvImporter';
|
||||||
import { FirefoxCsvImporter } from 'jslib/importers/firefoxCsvImporter';
|
import { FirefoxCsvImporter } from 'jslib/importers/firefoxCsvImporter';
|
||||||
import { Importer } from 'jslib/importers/importer';
|
import { Importer } from 'jslib/importers/importer';
|
||||||
@ -260,6 +261,8 @@ export class ImportComponent implements OnInit {
|
|||||||
return new EnpassCsvImporter();
|
return new EnpassCsvImporter();
|
||||||
case 'pwsafexml':
|
case 'pwsafexml':
|
||||||
return new PasswordSafeXmlImporter();
|
return new PasswordSafeXmlImporter();
|
||||||
|
case 'dashlanecsv':
|
||||||
|
return new DashlaneCsvImporter();
|
||||||
default:
|
default:
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user