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

encrypt, upload, and view attachments

This commit is contained in:
Kyle Spearrin
2017-06-30 16:22:39 -04:00
parent 9c7b47c277
commit 7b4cf53ec4
8 changed files with 296 additions and 12 deletions

View File

@@ -199,6 +199,21 @@
});
};
$scope.attachments = function (login) {
var addModel = $uibModal.open({
animation: true,
templateUrl: 'app/vault/views/vaultAttachments.html',
controller: 'vaultAttachmentsController',
resolve: {
loginId: function () { return login.id; }
}
});
addModel.result.then(function (data) {
});
};
$scope.editFolder = function (folder) {
var editModel = $uibModal.open({
animation: true,