mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-04-08 07:46:59 +00:00
Extract country states logic out of subscriptions address controller into new service CountryStates
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
angular.module("ofn.admin").factory "CountryStates", ($filter) ->
|
||||
new class CountryStates
|
||||
|
||||
statesFor: (countries, country_id) ->
|
||||
return [] unless country_id
|
||||
country = $filter('filter')(countries, {id: country_id}, true)[0]
|
||||
return [] unless country
|
||||
country.states
|
||||
Reference in New Issue
Block a user