mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-03 22:06:07 +00:00
14 lines
210 B
Ruby
14 lines
210 B
Ruby
class DefaultCountry
|
|
def self.id
|
|
country.id
|
|
end
|
|
|
|
def self.code
|
|
country.iso
|
|
end
|
|
|
|
def self.country
|
|
Spree::Country.find_by(iso: ENV["DEFAULT_COUNTRY_CODE"]) || Spree::Country.first
|
|
end
|
|
end
|