1
0
mirror of https://github.com/bitwarden/web synced 2026-01-10 12:33:43 +00:00

groups pages

This commit is contained in:
Kyle Spearrin
2017-04-20 16:31:52 -04:00
parent ede10677f9
commit 180101400f
10 changed files with 80 additions and 8 deletions

View File

@@ -0,0 +1,10 @@
angular
.module('bit.organization')
.controller('organizationSubvaultsGroupsController', function ($scope, $state, $uibModalInstance, subvault) {
$scope.subvault = subvault;
$scope.close = function () {
$uibModalInstance.dismiss('cancel');
};
});