Files
openfoodnetwork/app/assets/javascripts/darkswarm/services/enterprise_resource.js.coffee
2021-08-02 18:59:42 +01:00

9 lines
240 B
CoffeeScript

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