Semaphore/public/js/controllers/projects/inventory.js

19 lines
591 B
JavaScript
Raw Normal View History

2016-04-02 14:40:07 +02:00
define(function () {
app.registerController('ProjectInventoryCtrl', ['$scope', '$http', '$uibModal', 'Project', function ($scope, $http, $modal, Project) {
$scope.reload = function () {
$http.get(Project.getURL() + '/inventory').success(function (inventory) {
$scope.inventory = inventory;
});
}
$scope.remove = function (environment) {
$http.delete(Project.getURL() + '/inventory/' + environment.id).success(function () {
$scope.reload();
}).error(function () {
swal('error', 'could not delete inventory..', 'error');
});
}
$scope.reload();
2016-04-02 14:40:07 +02:00
}]);
});