Download this file
1 2 3 4 5 6 7 8
angular.module('mainApp') .factory('notifyService', function($http){ return { create: function(title, body){ console.log("notifyService.create TODO"); } } })