1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 23:03:32 +00:00

get private key if not available during sync

This commit is contained in:
Kyle Spearrin
2017-04-25 16:23:37 -04:00
parent f04908058f
commit 154427a0f3
3 changed files with 55 additions and 5 deletions

View File

@@ -47,6 +47,11 @@ var ProfileResponse = function (response) {
}
};
var KeysResponse = function (response) {
this.privateKey = response.PrivateKey;
this.publicKey = response.PublicKey;
};
var ProfileOrganizationResponse = function (response) {
this.id = response.Id;
this.name = response.Name;