1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

stick password xml importer

This commit is contained in:
Kyle Spearrin
2018-07-13 17:11:31 -04:00
parent 84dc1d1b74
commit 1da85c96cf
3 changed files with 8 additions and 1 deletions

2
jslib

Submodule jslib updated: 51f041a959...76ece834d1

View File

@@ -95,6 +95,10 @@
<ng-container *ngIf="format === 'msecurecsv'"> <ng-container *ngIf="format === 'msecurecsv'">
Using the mSecure desktop application, navigate to "File" &rarr; "Export" &rarr; "CSV File..." and save the CSV file. Using the mSecure desktop application, navigate to "File" &rarr; "Export" &rarr; "CSV File..." and save the CSV file.
</ng-container> </ng-container>
<ng-container *ngIf="format === 'stickypasswordxml'">
Using the Sticky Password desktop application, navigate to "Menu" (top right) &rarr; "Export" &rarr; "Export all". Select
the unencrypted format XML option and save the XML file.
</ng-container>
</app-callout> </app-callout>
<div class="row"> <div class="row">
<div class="col-6"> <div class="col-6">

View File

@@ -42,6 +42,7 @@ import { PasswordDragonXmlImporter } from 'jslib/importers/passwordDragonXmlImpo
import { PasswordSafeXmlImporter } from 'jslib/importers/passwordSafeXmlImporter'; 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 { UpmCsvImporter } from 'jslib/importers/upmCsvImporter'; import { UpmCsvImporter } from 'jslib/importers/upmCsvImporter';
@Component({ @Component({
@@ -266,6 +267,8 @@ export class ImportComponent implements OnInit {
return new DashlaneCsvImporter(); return new DashlaneCsvImporter();
case 'msecurecsv': case 'msecurecsv':
return new MSecureCsvImporter(); return new MSecureCsvImporter();
case 'stickypasswordxml':
return new StickyPasswordXmlImporter();
default: default:
return null; return null;
} }