From ce55ebae9de1e34f71efdd54b0545172ce1328e8 Mon Sep 17 00:00:00 2001 From: blazern Date: Mon, 20 Dec 2021 19:07:31 +0300 Subject: [PATCH] Enable country-wide products suggestions for USA --- lib/model/country_code.dart | 1 + lib/outside/off/off_shops_manager.dart | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/model/country_code.dart b/lib/model/country_code.dart index b07febae..b11e9f45 100644 --- a/lib/model/country_code.dart +++ b/lib/model/country_code.dart @@ -15,4 +15,5 @@ class CountryCode { static const String GREAT_BRITAIN = 'gb'; static const String UNITED_KINGDOM = 'uk'; static const String RUSSIA = 'ru'; + static const String USA = 'us'; } diff --git a/lib/outside/off/off_shops_manager.dart b/lib/outside/off/off_shops_manager.dart index 1c549bb7..b0289181 100644 --- a/lib/outside/off/off_shops_manager.dart +++ b/lib/outside/off/off_shops_manager.dart @@ -33,7 +33,8 @@ class OffShopsManager { CountryCode.GERMANY, CountryCode.FRANCE, CountryCode.NETHERLANDS, - CountryCode.BELGIUM + CountryCode.BELGIUM, + CountryCode.USA, ]; final OffVeganBarcodesObtainer _veganBarcodesObtainer;