From 9b155568e25baaf5bee8fbd8ed103f8a0c8666f6 Mon Sep 17 00:00:00 2001 From: gandhimathi Date: Fri, 19 Jan 2018 18:18:50 +0530 Subject: [PATCH] course details changes done --- .../assets/js/controllers/feesNotification.js | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Apollo/assets/js/controllers/feesNotification.js 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) { + + }); +}]); + +