apollodec/Apollo/assets/js/controllers/feesNotification.js
2019-02-15 18:02:42 +05:30

23 lines
624 B
JavaScript
Executable File

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