diff --git a/Apollo/assets/js/controllers/feesNotification.js b/Apollo/assets/js/controllers/feesNotification.js new file mode 100644 index 00000000..4236a554 --- /dev/null +++ b/Apollo/assets/js/controllers/feesNotification.js @@ -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) { + + }); +}]); + +