mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-23 11:56:00 +01:00
encrypt key bytes when confirming, not object
This commit is contained in:
parent
c3eb6bb972
commit
63a657cac5
@ -39,7 +39,7 @@
|
||||
return;
|
||||
}
|
||||
|
||||
var key = cryptoService.rsaEncrypt(orgKey, userKey.PublicKey);
|
||||
var key = cryptoService.rsaEncrypt(orgKey.key, userKey.PublicKey);
|
||||
apiService.organizationUsers.confirm({ orgId: $state.params.orgId, id: user.id }, { key: key }, function () {
|
||||
user.status = 2;
|
||||
toastr.success(user.email + ' has been confirmed.', 'User Confirmed');
|
||||
|
Loading…
Reference in New Issue
Block a user