Files
openfoodnetwork/app/assets/javascripts/darkswarm/services/enterprise_resource.js.coffee
2020-04-04 17:02:27 +02:00

9 lines
222 B
CoffeeScript

Darkswarm.factory 'EnterpriseResource', ($resource) ->
$resource('/enterprise/:id.json', {}, {
'relatives':
method: 'GET'
url: '/enterprises/:id/relatives.json'
isArray: true
cache: true
})