Skip to content

Instantly share code, notes, and snippets.

@agentmilindu
Created December 5, 2014 17:11
Show Gist options
  • Save agentmilindu/2f5fb9bf2d8006114fb8 to your computer and use it in GitHub Desktop.
Save agentmilindu/2f5fb9bf2d8006114fb8 to your computer and use it in GitHub Desktop.
services.factory('DiskImagesFactory', function ($resource) {
return $resource('api/diskImages/:id', {id: '@_id'}, {
getDiskImages: {
method: 'GET',
url : 'api/project/:id/diskImages',
params : { id: '@_id' },
isArray : true
}
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment