mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
14 lines
225 B
Ruby
14 lines
225 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
|