Files
openfoodnetwork/config/initializers/feature_toggles.rb
Pau Perez bac9f62132 Enable customer_balance to all users
This however makes the tests still pass, which rely on the off-branch
logic of the toggle. We'll work on them next.
2021-04-09 08:20:26 +02:00

12 lines
277 B
Ruby

require 'open_food_network/feature_toggle'
beta_testers = ENV['BETA_TESTERS']&.split(/[\s,]+/) || []
OpenFoodNetwork::FeatureToggle.enable(:customer_balance) do |user|
!Rails.env.test?
end
OpenFoodNetwork::FeatureToggle.enable(:unit_price) do
Rails.env.development?
end