1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 09:13:33 +00:00

passbolt csv import

This commit is contained in:
Kyle Spearrin
2018-07-18 10:10:45 -04:00
parent 7346958b27
commit 2382d5028b
2 changed files with 7 additions and 0 deletions

View File

@@ -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();