mirror of
https://github.com/bitwarden/browser.git
synced 2025-01-04 18:37:45 +01:00
truekey csv importer
This commit is contained in:
parent
0650cafb28
commit
bdb95e58e6
2
jslib
2
jslib
@ -1 +1 @@
|
|||||||
Subproject commit 6b4ae1b8d591e973fe4036d3c10b6f0be81debc9
|
Subproject commit d677bad76a5e2d95691ffcf164e11094b1d01ee4
|
@ -99,6 +99,10 @@
|
|||||||
Using the Sticky Password desktop application, navigate to "Menu" (top right) → "Export" → "Export all". Select
|
Using the Sticky Password desktop application, navigate to "Menu" (top right) → "Export" → "Export all". Select
|
||||||
the unencrypted format XML option and save the XML file.
|
the unencrypted format XML option and save the XML file.
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
<ng-container *ngIf="format === 'truekeycsv'">
|
||||||
|
Using the True Key desktop application, click the gear icon (top right) and then navigate to "App Settings". Click the "Export"
|
||||||
|
button, enter your password 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">
|
||||||
|
@ -43,6 +43,7 @@ import { PasswordSafeXmlImporter } from 'jslib/importers/passwordSafeXmlImporter
|
|||||||
import { SafeInCloudXmlImporter } from 'jslib/importers/safeInCloudXmlImporter';
|
import { SafeInCloudXmlImporter } from 'jslib/importers/safeInCloudXmlImporter';
|
||||||
import { SaferPassCsvImporter } from 'jslib/importers/saferpassCsvImport';
|
import { SaferPassCsvImporter } from 'jslib/importers/saferpassCsvImport';
|
||||||
import { StickyPasswordXmlImporter } from 'jslib/importers/stickyPasswordXmlImporter';
|
import { StickyPasswordXmlImporter } from 'jslib/importers/stickyPasswordXmlImporter';
|
||||||
|
import { TrueKeyCsvImporter } from 'jslib/importers/truekeyCsvImporter';
|
||||||
import { UpmCsvImporter } from 'jslib/importers/upmCsvImporter';
|
import { UpmCsvImporter } from 'jslib/importers/upmCsvImporter';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
@ -269,6 +270,8 @@ export class ImportComponent implements OnInit {
|
|||||||
return new MSecureCsvImporter();
|
return new MSecureCsvImporter();
|
||||||
case 'stickypasswordxml':
|
case 'stickypasswordxml':
|
||||||
return new StickyPasswordXmlImporter();
|
return new StickyPasswordXmlImporter();
|
||||||
|
case 'truekeycsv':
|
||||||
|
return new TrueKeyCsvImporter();
|
||||||
default:
|
default:
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user