mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
14 lines
223 B
Ruby
14 lines
223 B
Ruby
module OpenFoodNetwork
|
|
class FeatureToggle
|
|
def self.enabled? feature
|
|
features.with_indifferent_access[feature]
|
|
end
|
|
|
|
private
|
|
|
|
def self.features
|
|
{connect_learn_homepage: false}
|
|
end
|
|
end
|
|
end
|