course details changes done

This commit is contained in:
gandhimathi 2018-01-19 18:18:50 +05:30
parent bd131f46c6
commit 9b155568e2

View File

@ -0,0 +1,22 @@
'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) {
});
}]);