1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-14 02:08:50 +02:00

import ciphers, no logins

This commit is contained in:
Kyle Spearrin 2017-09-28 13:12:39 -04:00
parent c44a638644
commit 6c93a63c06
2 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@
apiService.ciphers.importOrg({ orgId: $state.params.orgId }, {
collections: cipherService.encryptCollections(collections, $state.params.orgId),
logins: cipherService.encryptLogins(logins, cryptoService.getOrgKey($state.params.orgId)),
ciphers: cipherService.encryptLogins(logins, cryptoService.getOrgKey($state.params.orgId)),
collectionRelationships: collectionRelationships
}, function () {
$uibModalInstance.dismiss('cancel');

View File

@ -288,7 +288,7 @@
apiService.ciphers.import({
folders: cipherService.encryptFolders(folders),
logins: cipherService.encryptLogins(logins),
ciphers: cipherService.encryptLogins(logins),
folderRelationships: folderRelationships
}, function () {
$uibModalInstance.dismiss('cancel');