1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-22 19:23:58 +00:00

Enable Encrypted json export of vaults (#1174)

* Enable Encrypted json export of vaults

* Match jslib export of non-org ciphers

* Clean up export

* Update src/App/Pages/Settings/ExportVaultPage.xaml.cs

Co-authored-by: Kyle Spearrin <kspearrin@users.noreply.github.com>

Co-authored-by: Matt Gibson <mdgibson@Matts-MBP.lan>
Co-authored-by: Kyle Spearrin <kspearrin@users.noreply.github.com>
This commit is contained in:
Matt Gibson
2020-12-14 11:56:13 -06:00
committed by GitHub
parent 6e40b7f25b
commit 3227daddaf
18 changed files with 242 additions and 54 deletions

View File

@@ -13,6 +13,12 @@ namespace Bit.Core.Models.Export
Uri = obj.Uri;
}
public LoginUri(Domain.LoginUri obj)
{
Match = obj.Match;
Uri = obj.Uri?.EncryptedString;
}
public UriMatchType? Match { get; set; }
public string Uri { get; set; }