mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-06 22:36:07 +00:00
17 lines
268 B
Ruby
17 lines
268 B
Ruby
module OpenFoodWeb
|
|
class FeatureToggle
|
|
def self.enabled? feature
|
|
features[feature]
|
|
end
|
|
|
|
|
|
private
|
|
|
|
def self.features
|
|
{eaterprises: true,
|
|
local_organics: false,
|
|
enterprises_distributor_info_rich_text: false}
|
|
end
|
|
end
|
|
end
|