[PM-5164] Update description of passwordsafe xml importer (#7115)
* Add comment to the PasswordSafeXmlImporter to show it's the one from pwsafe.org and not from passwordsafe.com * Update dropdown value for pwsafexml, toshow it's from pwsafe.org --------- Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
This commit is contained in:
parent
bf60711efe
commit
3c7f369e40
|
@ -3,6 +3,7 @@ import { ImportResult } from "../models/import-result";
|
||||||
import { BaseImporter } from "./base-importer";
|
import { BaseImporter } from "./base-importer";
|
||||||
import { Importer } from "./importer";
|
import { Importer } from "./importer";
|
||||||
|
|
||||||
|
/** This is the importer for the xml format from pwsafe.org */
|
||||||
export class PasswordSafeXmlImporter extends BaseImporter implements Importer {
|
export class PasswordSafeXmlImporter extends BaseImporter implements Importer {
|
||||||
parse(data: string): Promise<ImportResult> {
|
parse(data: string): Promise<ImportResult> {
|
||||||
const result = new ImportResult();
|
const result = new ImportResult();
|
||||||
|
|
|
@ -29,7 +29,7 @@ export const regularImportOptions = [
|
||||||
{ id: "enpassjson", name: "Enpass (json)" },
|
{ id: "enpassjson", name: "Enpass (json)" },
|
||||||
{ id: "protonpass", name: "ProtonPass (zip/json)" },
|
{ id: "protonpass", name: "ProtonPass (zip/json)" },
|
||||||
{ id: "safeincloudxml", name: "SafeInCloud (xml)" },
|
{ id: "safeincloudxml", name: "SafeInCloud (xml)" },
|
||||||
{ id: "pwsafexml", name: "Password Safe (xml)" },
|
{ id: "pwsafexml", name: "Password Safe - pwsafe.org (xml)" },
|
||||||
{ id: "stickypasswordxml", name: "Sticky Password (xml)" },
|
{ id: "stickypasswordxml", name: "Sticky Password (xml)" },
|
||||||
{ id: "msecurecsv", name: "mSecure (csv)" },
|
{ id: "msecurecsv", name: "mSecure (csv)" },
|
||||||
{ id: "truekeycsv", name: "True Key (csv)" },
|
{ id: "truekeycsv", name: "True Key (csv)" },
|
||||||
|
|
Loading…
Reference in New Issue