mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-07 22:46:06 +00:00
10 lines
295 B
CoffeeScript
10 lines
295 B
CoffeeScript
angular.module("ofn.admin").factory "Taxons", (taxons, $filter) ->
|
|
new class Taxons
|
|
constructor: ->
|
|
@taxons = taxons
|
|
|
|
findByIDs: (ids) ->
|
|
taxon for taxon in @taxons when taxon.id.toString() in ids.split(",")
|
|
|
|
findByTerm: (term) ->
|
|
$filter('filter')(@taxons, term) |