course details changes done
This commit is contained in:
parent
bd131f46c6
commit
9b155568e2
22
Apollo/assets/js/controllers/feesNotification.js
Normal file
22
Apollo/assets/js/controllers/feesNotification.js
Normal 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) {
|
||||
|
||||
});
|
||||
}]);
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user