mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-28 21:07:16 +00:00
9 lines
222 B
CoffeeScript
9 lines
222 B
CoffeeScript
angular.module("admin.enterprises").factory 'EnterpriseResource', ($resource) ->
|
|
$resource('/admin/enterprises/:id.json', {}, {
|
|
'index':
|
|
method: 'GET'
|
|
isArray: true
|
|
'update':
|
|
method: 'PUT'
|
|
})
|