mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
16 lines
241 B
Ruby
16 lines
241 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|