1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 10:13:31 +00:00

billing seat adjustments

This commit is contained in:
Kyle Spearrin
2017-04-10 12:29:06 -04:00
parent f8fcbbea85
commit 24cbe13ca7
6 changed files with 91 additions and 2 deletions

View File

@@ -29,6 +29,23 @@
});
};
$scope.adjustSeats = function (add) {
var modal = $uibModal.open({
animation: true,
templateUrl: 'app/organization/views/organizationBillingAdjustSeats.html',
controller: 'organizationBillingAdjustSeatsController',
resolve: {
add: function () {
return add;
}
}
});
modal.result.then(function () {
load();
});
};
$scope.cancel = function () {
};