mirror of
https://github.com/bitwarden/web
synced 2025-12-10 21:33:16 +00:00
ascendo dv csv importer
This commit is contained in:
2
jslib
2
jslib
Submodule jslib updated: 51ee0b065a...4b5e192457
@@ -118,6 +118,10 @@
|
|||||||
and click the "Export" button at the top of the listing. Choose the "csv (lastpass)" export format and click
|
and click the "Export" button at the top of the listing. Choose the "csv (lastpass)" export format and click
|
||||||
the "Export" button.
|
the "Export" button.
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
<ng-container *ngIf="format === 'ascendocsv'">
|
||||||
|
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>
|
||||||
</app-callout>
|
</app-callout>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-6">
|
<div class="col-6">
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ import { KvpRequest } from 'jslib/models/request/kvpRequest';
|
|||||||
|
|
||||||
import { CipherView } from 'jslib/models/view/cipherView';
|
import { CipherView } from 'jslib/models/view/cipherView';
|
||||||
|
|
||||||
|
import { AscendoCsvImporter } from 'jslib/importers/ascendoCsvImporter';
|
||||||
import { AviraCsvImporter } from 'jslib/importers/aviraCsvImporter';
|
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';
|
||||||
@@ -280,6 +281,8 @@ export class ImportComponent implements OnInit {
|
|||||||
return new ClipperzHtmlImporter();
|
return new ClipperzHtmlImporter();
|
||||||
case 'roboformcsv':
|
case 'roboformcsv':
|
||||||
return new RoboFormCsvImporter();
|
return new RoboFormCsvImporter();
|
||||||
|
case 'ascendocsv':
|
||||||
|
return new AscendoCsvImporter();
|
||||||
default:
|
default:
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user