mirror of
https://github.com/bitwarden/web
synced 2025-12-24 04:03:20 +00:00
12 lines
407 B
JavaScript
12 lines
407 B
JavaScript
angular
|
|
.module('bit.organization')
|
|
|
|
.controller('organizationSubvaultsGroupsController', function ($scope, $state, $uibModalInstance, subvault, $analytics) {
|
|
$analytics.eventTrack('organizationSubvaultsGroupsController', { category: 'Modal' });
|
|
$scope.subvault = subvault;
|
|
|
|
$scope.close = function () {
|
|
$uibModalInstance.dismiss('cancel');
|
|
};
|
|
});
|