1
0
mirror of https://github.com/bitwarden/web synced 2025-12-24 04:03:20 +00:00
Files
web/src/app/organization/organizationSubvaultsGroupsController.js
2017-04-26 10:32:14 -04:00

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');
};
});