mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
14 lines
293 B
CoffeeScript
14 lines
293 B
CoffeeScript
angular.module("Darkswarm").factory 'Shops', ($injector) ->
|
|
new class Shops
|
|
all: []
|
|
byID: {}
|
|
|
|
constructor: ->
|
|
if $injector.has('shops')
|
|
@load($injector.get('shops'))
|
|
|
|
load: (shops) ->
|
|
for shop in shops
|
|
@all.push shop
|
|
@byID[shop.id] = shop
|