mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
9 lines
222 B
CoffeeScript
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
|
|
})
|