Files
openfoodnetwork/app/services/default_country.rb
2021-05-19 09:42:52 -07:00

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