mirror of
https://github.com/bitwarden/web
synced 2025-12-31 23:53:13 +00:00
check status and types for org management
This commit is contained in:
@@ -99,7 +99,8 @@ angular
|
||||
id: profile.Organizations[i].Id,
|
||||
name: profile.Organizations[i].Name,
|
||||
key: profile.Organizations[i].Key,
|
||||
status: profile.Organizations[i].Status
|
||||
status: profile.Organizations[i].Status,
|
||||
type: profile.Organizations[i].Type
|
||||
});
|
||||
}
|
||||
|
||||
@@ -125,12 +126,13 @@ angular
|
||||
id: org.Id,
|
||||
name: org.Name,
|
||||
key: org.Key,
|
||||
status: org.Status
|
||||
status: 2, // 2 = Confirmed
|
||||
type: 0 // 0 = Owner
|
||||
};
|
||||
profile.organizations.push(o);
|
||||
|
||||
_userProfile = profile;
|
||||
cryptoService.addOrgKey(o);
|
||||
cryptoService.addOrgKey(o.id, o.key);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
@@ -53,7 +53,7 @@ angular
|
||||
}
|
||||
};
|
||||
|
||||
_service.addOrgKey = function (orgKeyCt, privateKey) {
|
||||
_service.addOrgKey = function (orgId, orgKey, privateKey) {
|
||||
_orgKeys = _service.getOrgKeys();
|
||||
if (!_orgKeys) {
|
||||
_orgKeys = {};
|
||||
@@ -65,9 +65,9 @@ angular
|
||||
}
|
||||
|
||||
try {
|
||||
var orgKey = _service.rsaDecrypt(orgKeyCt.key, privateKey);
|
||||
_orgKeys[orgKeyCt.id] = orgKey;
|
||||
orgKeysb64[orgKeyCt.id] = forge.util.encode64(orgKey);
|
||||
var orgKey = _service.rsaDecrypt(orgKey, privateKey);
|
||||
_orgKeys[orgId] = orgKey;
|
||||
orgKeysb64[orgId] = forge.util.encode64(orgKey);
|
||||
}
|
||||
catch (e) {
|
||||
_orgKeys = null;
|
||||
|
||||
Reference in New Issue
Block a user