mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-11 23:17:48 +00:00
10 lines
314 B
CoffeeScript
10 lines
314 B
CoffeeScript
Darkswarm.factory 'Hubs', ($filter, Enterprises, visibleFilter) ->
|
|
new class Hubs
|
|
constructor: ->
|
|
@hubs = @order Enterprises.enterprises.filter (hub)->
|
|
hub.has_hub_listing
|
|
@visible = visibleFilter @hubs
|
|
|
|
order: (hubs)->
|
|
$filter('orderBy')(hubs, ['-active', '+orders_close_at'])
|