mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
13 lines
307 B
JavaScript
13 lines
307 B
JavaScript
|
|
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
|
||
|
|
} ]);
|