1
0
mirror of https://github.com/bitwarden/web synced 2025-12-14 23:33:16 +00:00

convert share from logins to ciphers

This commit is contained in:
Kyle Spearrin
2017-10-09 15:54:21 -04:00
parent 422b48fa36
commit 7a36f13034
4 changed files with 26 additions and 26 deletions

View File

@@ -310,10 +310,10 @@
$scope.share = function (cipher) {
var modal = $uibModal.open({
animation: true,
templateUrl: 'app/vault/views/vaultShareLogin.html',
controller: 'vaultShareLoginController',
templateUrl: 'app/vault/views/vaultShareCipher.html',
controller: 'vaultShareCipherController',
resolve: {
loginId: function () { return cipher.id; }
cipherId: function () { return cipher.id; }
}
});