mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
18 lines
522 B
CoffeeScript
18 lines
522 B
CoffeeScript
angular.module("admin.resources").factory 'EnterpriseResource', ($resource) ->
|
|
ignoredAttrs = ->
|
|
["$$hashKey", "producer", "package", "producerError", "packageError", "status"]
|
|
|
|
$resource('/admin/enterprises/:id/:action.json', {}, {
|
|
'index':
|
|
method: 'GET'
|
|
isArray: true
|
|
'update':
|
|
method: 'PUT'
|
|
'removeLogo':
|
|
url: '/api/v0/enterprises/:id/logo.json'
|
|
method: 'DELETE'
|
|
'removePromoImage':
|
|
url: '/api/v0/enterprises/:id/promo_image.json'
|
|
method: 'DELETE'
|
|
})
|