mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-03 22:06:07 +00:00
16 lines
389 B
CoffeeScript
16 lines
389 B
CoffeeScript
Darkswarm.factory 'Product', ($resource) ->
|
|
new class Product
|
|
constructor: ->
|
|
@update()
|
|
|
|
# TODO: don't need to scope this into object
|
|
# Already on object as far as controller scope is concerned
|
|
data:
|
|
products: null
|
|
loading: true
|
|
|
|
update: =>
|
|
@data.products = $resource("/shop/products").query =>
|
|
@data.loading = false
|
|
@data
|