mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
18 lines
321 B
Ruby
18 lines
321 B
Ruby
module OpenFoodWeb
|
|
class FeatureToggle
|
|
def self.enabled? feature
|
|
features[feature]
|
|
end
|
|
|
|
private
|
|
|
|
def self.features
|
|
{eaterprises: true,
|
|
local_organics: false,
|
|
order_cycles: false,
|
|
multi_cart: false,
|
|
enterprises_distributor_info_rich_text: false}
|
|
end
|
|
end
|
|
end
|