mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-01 21:47:16 +00:00
10 lines
272 B
CoffeeScript
10 lines
272 B
CoffeeScript
Shop.factory 'OrderCycle', ($resource, Product) ->
|
|
class OrderCycle
|
|
@order_cycle = {
|
|
order_cycle_id: null
|
|
}
|
|
|
|
@push_order_cycle: ->
|
|
new $resource("/shop/order_cycle").save {order_cycle_id: @order_cycle.order_cycle_id}, ->
|
|
Product.update()
|