mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
9 lines
247 B
CoffeeScript
9 lines
247 B
CoffeeScript
angular.module('Darkswarm').factory 'Shopfront', (shopfront) ->
|
|
new class Shopfront
|
|
shopfront: shopfront
|
|
producers_by_id: {}
|
|
|
|
constructor: ->
|
|
for producer in shopfront.producers
|
|
@producers_by_id[producer.id] = producer
|