apollodec/Apollo/assets/js/controllers/feesNotification.js
venbatechnologies@gmail.com 209b451b9c select
2018-03-22 18:48:56 +05:30

23 lines
620 B
JavaScript
Executable File

'use strict';
/**
* daybook details capturing
*
*/
app.controller('feesNotification', ["$scope", "$rootScope", "$filter", "API_POINTS", "$localStorage", "$http", "$state", 'ipCookie', '$window', function ($scope, $rootScope, $filter, apiPoint, $localStorage, $http, $state, ipCookie, $window) {
var sendNotification = {
method: 'POST',
url: apiPoint.url + 'sendStudentNotification/',
headers: {
'Content-Type': 'application/json'
},
data: {
localReqDetails: ""
}
};
$http(sendNotification).then(function (response) {
});
}]);