mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
22 lines
485 B
CoffeeScript
22 lines
485 B
CoffeeScript
angular.module("admin.resources").factory 'CustomerResource', ($resource) ->
|
|
$resource('/admin/customers/:id.json', {}, {
|
|
'index':
|
|
method: 'GET'
|
|
isArray: true
|
|
params:
|
|
enterprise_id: '@enterprise_id'
|
|
'create':
|
|
method: 'POST'
|
|
params:
|
|
enterprise_id: '@enterprise_id'
|
|
email: '@email'
|
|
'destroy':
|
|
method: 'DELETE'
|
|
params:
|
|
id: '@id'
|
|
'update':
|
|
method: 'PUT'
|
|
params:
|
|
id: '@id'
|
|
})
|