1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-30 15:13:32 +00:00

org people subvault selection

This commit is contained in:
Kyle Spearrin
2017-03-11 23:02:43 -05:00
parent 0acab61f2e
commit 6ece16ccc9
7 changed files with 273 additions and 4 deletions

View File

@@ -39,6 +39,21 @@
});
};
$scope.edit = function (id) {
var modal = $uibModal.open({
animation: true,
templateUrl: 'app/organization/views/organizationPeopleEdit.html',
controller: 'organizationPeopleEditController',
resolve: {
id: function () { return id; }
}
});
modal.result.then(function () {
loadList();
});
};
function loadList() {
apiService.organizationUsers.list({ orgId: $state.params.orgId }, function (list) {
var users = [];