Files
commafeed/src/main/webapp/js/services.js

13 lines
307 B
JavaScript
Raw Normal View History

2013-03-22 09:29:30 +01:00
var module = angular.module('commafeed.services', [ 'ngResource' ]);
module.factory('CategoryService', [ '$resource', '$http',
function($resource, $http) {
var actions = {
'get' : {
method : 'GET'
}
}
res = $resource('subscriptions', {}, actions);
return res
} ]);