23 lines
620 B
JavaScript
Executable File
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) {
|
|
|
|
});
|
|
}]);
|
|
|
|
|