mirror of
https://github.com/bitwarden/browser
synced 2024-12-29 11:22:30 +01:00
passbolt csv import
This commit is contained in:
parent
7346958b27
commit
2382d5028b
@ -113,6 +113,11 @@
|
||||
"Export" button to save the CSV file. Note: RoboForm only allows you to export Logins. Other items will not be
|
||||
exported.
|
||||
</ng-container>
|
||||
<ng-container *ngIf="format === 'passboltcsv'">
|
||||
Log into the Passbolt web vault and navigate to the "Passwords" listing. Select all of the passwords you would like to export
|
||||
and click the "Export" button at the top of the listing. Choose the "csv (lastpass)" export format and click
|
||||
the "Export" button.
|
||||
</ng-container>
|
||||
</app-callout>
|
||||
<div class="row">
|
||||
<div class="col-6">
|
||||
|
@ -206,6 +206,7 @@ export class ImportComponent implements OnInit {
|
||||
{ id: 'splashidcsv', name: 'SplashID (csv)' },
|
||||
{ id: 'passworddragonxml', name: 'Password Dragon (xml)' },
|
||||
{ id: 'padlockcsv', name: 'Padlock (csv)' },
|
||||
{ id: 'passboltcsv', name: 'Passbolt (csv)' },
|
||||
{ id: 'clipperzhtml', name: 'Clipperz (html)' },
|
||||
{ id: 'aviracsv', name: 'Avira (csv)' },
|
||||
{ id: 'saferpasscsv', name: 'SaferPass (csv)' },
|
||||
@ -229,6 +230,7 @@ export class ImportComponent implements OnInit {
|
||||
case 'bitwardencsv':
|
||||
return new BitwardenCsvImporter();
|
||||
case 'lastpasscsv':
|
||||
case 'passboltcsv':
|
||||
return new LastPassCsvImporter();
|
||||
case 'keepassxcsv':
|
||||
return new KeePassXCsvImporter();
|
||||
|
Loading…
Reference in New Issue
Block a user