1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-07 02:53:28 +00:00

group user assignment

This commit is contained in:
Kyle Spearrin
2017-05-09 19:04:26 -04:00
parent 816cc0b17b
commit 93e88d8b23
12 changed files with 291 additions and 27 deletions

View File

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