Use monitor save function from Factory, not controller

This commit is contained in:
Kyle Johnson 2014-12-21 21:45:44 -05:00
parent 1fadbff72d
commit 0436b099d0
1 changed files with 3 additions and 10 deletions

View File

@ -98,16 +98,9 @@ ZoneMinder.controller('MonitorController', function($scope, $http, $location, Mo
// Call Monitor.saveMonitor when the save button is clicked. Pass along $scope.monitor
$scope.submitMonitor = function() {
$http({
method : 'POST',
url : '/api/monitors.json',
data : $.param($scope.monitor),
headers : { 'Content-Type': 'application/x-www-form-urlencoded' } // set the headers so angular passing info as form data (not request payload)
})
.success(function(data) {
console.log(data);
window.location = "/index.php?view=console";
});
Monitor.saveMonitor($scope.monitor)
// Redirect to the dashboard on success
.success(function(data) { window.location = "/index.php?view=console"; });
};
});