mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
9 lines
232 B
CoffeeScript
9 lines
232 B
CoffeeScript
angular.module("admin.customers").factory 'CustomerResource', ($resource) ->
|
|
$resource('/admin/customers.json', {}, {
|
|
'index':
|
|
method: 'GET'
|
|
isArray: true
|
|
params:
|
|
enterprise_id: '@enterprise_id'
|
|
})
|