mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
11 lines
175 B
Ruby
11 lines
175 B
Ruby
module ShopHelper
|
|
def order_cycles_name_and_pickup_times(order_cycles)
|
|
order_cycles.map do |oc|
|
|
[
|
|
pickup_time(oc),
|
|
oc.id
|
|
]
|
|
end
|
|
end
|
|
end
|