Skip to content

Instantly share code, notes, and snippets.

@pererinha
Created June 23, 2014 21:54
Show Gist options
  • Save pererinha/5521d3e712eb03c130a8 to your computer and use it in GitHub Desktop.
Save pererinha/5521d3e712eb03c130a8 to your computer and use it in GitHub Desktop.
var restaurants = $resource( App.service + 'restaurant/:action/:id', { action: '@action', id: '@id' }, {
// list methods
'list' : { 'method': 'GET', params : { 'action' : 'list' }, isArray: true },
'paid_list' : { 'method': 'GET', params : { 'action' : 'paid-list' }, isArray: true },
'delete' : { 'method': 'GET', params : { 'action' : 'delete', 'id': 1 },
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment