Skip to content

Instantly share code, notes, and snippets.

@ZachMoreno
Created November 1, 2014 22:31
Show Gist options
  • Save ZachMoreno/2ae4dfcaeca9cce506b2 to your computer and use it in GitHub Desktop.
Save ZachMoreno/2ae4dfcaeca9cce506b2 to your computer and use it in GitHub Desktop.
'use strict';
angular.module('appName.itemService', [])
.factory('Items', ['$resource', function($resource) {
return $resource('http://localhost:1337/api/v1/items/:id', {}, {
delete: {method: 'DELETE'}
});
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment